How to set background color for JVector Map?
background-color, javascript, jvectormap
Solution
Thanks to @Denis Malinovsky, I finally figured out that The answer is: `backgroundColor: "#FFFFFF"`
Problem
I have the following code to initialize JVector map: ``` map = new jvm.WorldMap({ map: 'us_aea_en', // backgroundColor: #FFFFFF, //Only this line does not work. container: $('#map'), series: { regions: [{ attribute: 'fill' }] } }); ``` The above line: `backgroundColor: #FFFFFF` does not execute. I read the API documentation, it seems to have correct syntax. The code works perfect except for that line. How to set the background? Are there any other ways to set the background color?