amcharts not rendering India map correctly in worldmap -
while amcharts shows india map correctly (showing disputed regions part of india) when displaying india (http://jsfiddle.net/zxhseguw/5/) "dataprovider": { "map": "indialow", "areas": [ { "id": "in-ka", "value": 4447100, }, { "id": "in-up", "value": 38763 }] },
it shades differently when rendering on world map (http://jsfiddle.net/zxhseguw/6/)
"dataprovider": { "map": "worldlow", "areas": [ { "id": "in", "value": 4447100, }, { "id": "au", "value": 387633 }] },
i wonder, if there way make render india correctly, possible in google charts setting origin='india'
i'm assuming you're referring region around kashmir, correct? try using worldindialow
instead of worldlow
, includes more of disputed area part of india.
"dataprovider": { "map": "worldindialow", "areas": [ { "id": "in", "value": 4447100, }, { "id": "au", "value": 387633 }] },
Comments
Post a Comment