I have a map set up puts dots on the map, and draws lines connecting the dots to create a route. Each dot has a textSymbol next to it that I'm using to label each dot for the user. The problem is that with all the stuff in the background, it can be hard to read those labels sometimes. I'm wondering if there's any way to put a background behind the textSymbol to help it stand out. I know about infoWindows, but I'm already using those when you click on the dot to give you more information. Here's a snippet from my code that runs when it's looping through the route and putting the dots on the map. This is the portion that adds the labels....
font = new esri.symbol.Font("10pt", esri.symbol.Font.STYLE_NORMAL,
esri.symbol.Font.VARIANT_NORMAL,esri.symbol.Font.WEIGHT_NORMAL,"Verdana");
...
var textSymbol = new esri.symbol.TextSymbol(feature.attributes["LABEL"]).setColor(new dojo.Color([255, 0, 0])).
setOffset(30, 0).setFont(font).setKerning(true);
var point = new esri.geometry.Point(feature.attributes["NNLL_LONG_DEC"], feature.attributes["NNLL_LAT_DEC"], map.spatialReference);
map.graphics.add(new esri.Graphic(point, textSymbol));
...
Any ideas?