pitommasi Report post Posted July 6, 2011 How can I change the color for the border on the map? The one marked with the circle and the arrow in the attachment... P.S.: how is it possible that I cannot use the word "border" to perform a search within this forum? Share this post Link to post Share on other sites
FusionCharts Support Report post Posted July 6, 2011 Hi, To set a border color for the map, please use canvasBorderColor attribute. Please note that other related attributes are : showCanvasBorder, canvasBorderThickness, canvasBorderAlpha. For more details please check : http://www.fusioncharts.com/maps/docs/Contents/XML.html'>http://www.fusioncharts.com/maps/docs/Contents/XML.html from FusionMaps Documentation (http://www.fusioncharts.com/maps/docs/) Share this post Link to post Share on other sites
pitommasi Report post Posted July 6, 2011 Ok, it turned out that it wasn't the canvas border, but the white background of the containing DIV "peeking" from around the map, wich is strage, considering that the map and the div have the same dimensions... Share this post Link to post Share on other sites
pitommasi Report post Posted July 6, 2011 Maybe, if I could make the map transparent... Share this post Link to post Share on other sites
FusionCharts Support Report post Posted July 6, 2011 You can opt for one of these options: 1. Set the background color of the Flash Player : var map = new FusionMaps("../Maps/FCMap_USA.swf", "Map1Id", "750", "460", "0", "0","#000"); 2. Set the border color of the map using canvasBorderColor 3. Set the map transparent using setTransparent() function: e.g., var map = new FusionMaps("../Maps/FCMap_USA.swf", "Map1Id", "750", "460", "0", "0"); map.setTransparent(true); Share this post Link to post Share on other sites
pitommasi Report post Posted July 6, 2011 Solved! I opted for the first method, thanks! Share this post Link to post Share on other sites