Hi,
When we are using marker template for polygons, We get a box and then the info in the box. Is there a way to remove this border (box) and just place the info.
I am herewith putting the piece of code. Can you tell me what changes should I make.
markerTemplate: new $.ig.SimpleTextMarkerTemplate({ font: "12pt Arial", textColor: "Black",
// I dont want these parameters. I just want to print the value of the item (ID). //backgroundColor: "rgba(0,0,0,.3)", //backgroundColor:"white"//borderColor: "gray",//borderThickness: 1, //padding: 0,
getText: function (item) { return item.fieldValues.ID; } })
Thanks,
Pavan
If you use 'transparent' or rgba(0,0,0,0) for the border color then it should hide the border. null may also work, I can't recall.