Advertisement
Guest User

Untitled

a guest
Apr 27th, 2017
75
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 2.00 KB | None | 0 0
  1. // build map
  2. var map = AmCharts.makeChart( "worldmap", {
  3. "type": "map",
  4. "projection": "eckert6",
  5. "titles": [ {
  6. "text": "",
  7. "size": 14
  8. }, {
  9. "text": "",
  10. "color": "#ffffff",
  11. "size": 14,
  12. "bold": true
  13. } ],
  14. "imagesSettings": {
  15. "alpha": 0.75,
  16. "outlineColor": "#f0f0f0",
  17. "outlineThickness": 1
  18. },
  19. "dragMap": false,
  20. "zoomOnDoubleClick": false,
  21. "zoomControl": {
  22. "panControlEnabled": false,
  23. "zoomControlEnabled": false,
  24. "homeButtonEnabled": false,
  25. "zoomControlEnabled": false
  26. },
  27. "areasSettings": {
  28. "alpha": 0.80,
  29. "color": "#77B6E0",
  30. "unlistedAreasColor": "#ae85c9",
  31. "unlistedAreasAlpha": 0.35,
  32. "unlistedAreasOutlineColor":"#f0f0f0",
  33. "unlistedAreasOutlineAlpha":0.35
  34. },
  35. "dataProvider": {
  36. "map": "worldHigh",
  37. "images": images
  38. },
  39. "legend": {
  40. "align": "right",
  41. "width": 140,
  42. "height": 350,
  43. "equalWidths": true,
  44. "margin-right": 25,
  45. "margin-left": 25,
  46. "color": "#ffffff",
  47. "Rajdhani": "Rajdhani",
  48. "right": 20,
  49. "data": [
  50.  
  51. {"title":"DE:51", "color":"#DE4C4F"},
  52.  
  53. {"title":"RU:39", "color":"#DE4C4F"},
  54.  
  55. {"title":"CN:36", "color":"#DE4C4F"},
  56.  
  57. {"title":"NL:29", "color":"#DE4C4F"},
  58.  
  59. {"title":"CA:27", "color":"#DE4C4F"},
  60.  
  61. {"title":"IT:23", "color":"#DE4C4F"},
  62.  
  63. {"title":"GB:22", "color":"#DE4C4F"},
  64.  
  65. {"title":"FR:20", "color":"#DE4C4F"},
  66.  
  67. {"title":"TR:20", "color":"#DE4C4F"},
  68.  
  69. {"title":"IN:20", "color":"#DE4C4F"},
  70.  
  71. {"title":"RO:19", "color":"#DE4C4F"},
  72.  
  73. {"title":"TH:18", "color":"#DE4C4F"},
  74.  
  75. {"title":"AU:18", "color":"#DE4C4F"},
  76.  
  77. {"title":"UA:18", "color":"#DE4C4F"},
  78.  
  79. {"title":"PL:17", "color":"#DE4C4F"},
  80.  
  81. {"title":"IL:17", "color":"#DE4C4F"},
  82.  
  83. ]
  84. },
  85. "startDuration": 0,
  86. "export": {
  87. "enabled": false
  88. }
  89. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement