Solved! Go to Solution.
When the SimpleFillSymbol is created as seen below:
var sfs = new esri.symbol.SimpleFillSymbol(style, new esri.symbol.SimpleLineSymbol(esri.symbol.SimpleLineSymbol.SOLID, new dojo.Color("FFE01B6A"),2), new dojo.Color("FF1B1EE0"));
The outline color remains set to black. It should be set to blue. The color can be set manually after the SimpleFillSymbol is created:
sfs.outline.color = new dojo.Color("FF1B1EE0");
Is this a known issue?
sfs.outline.color = new dojo.Color("FF1B1EE0");