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     }]    }, 

updated fiddle


Comments

Popular posts from this blog

javascript - Clear button on addentry page doesn't work -

c# - Selenium Authentication Popup preventing driver close or quit -

tensorflow when input_data MNIST_data , zlib.error: Error -3 while decompressing: invalid block type -