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?
#FFFFFF
in quotes, like'#FFFFFF'
? :) – Wharf