Advertisement
Guest User

Untitled

a guest
Feb 22nd, 2017
90
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.60 KB | None | 0 0
  1. var data_for="{'country': 'Lithuania','litres': 501.9}, {'country': 'Czech Republic', 'litres': 301.9 }, {'country': 'Ireland','litres': 201.1}, {'country': 'Germany','litres': 165.8}, {'country': 'Australia','litres': 139.9}, {'country': 'Austria','litres': 128.3}, {'country': 'UK','litres': 99}, {'country': 'Belgium','litres': 60}, {'country': 'The Netherlands','litres': 50}";
  2.  
  3. var chart = AmCharts.makeChart( "chartdiv", {
  4. "type": "pie",
  5. "theme": "none",
  6.  
  7. "dataProvider": [data_for],
  8. "valueField": "litres",
  9. "titleField": "country",
  10. "balloon":{
  11. "fixedPosition":true
  12. },
  13. "export": {
  14. "enabled": true
  15. }
  16. } );
  17.  
  18. var data_for="{'country': 'Lithuania','litres': 501.9}, {'country': 'Czech Republic', 'litres': 301.9 }, {'country': 'Ireland','litres': 201.1}, {'country': 'Germany','litres': 165.8}, {'country': 'Australia','litres': 139.9}, {'country': 'Austria','litres': 128.3}, {'country': 'UK','litres': 99}, {'country': 'Belgium','litres': 60}, {'country': 'The Netherlands','litres': 50}";
  19.  
  20. var chart = AmCharts.makeChart( "chartdiv", {
  21. "type": "pie",
  22. "theme": "none",
  23.  
  24. "dataProvider": [{'country': 'Lithuania','litres': 501.9}, {'country': 'Czech Republic', 'litres': 301.9 }, {'country': 'Ireland','litres': 201.1}, {'country': 'Germany','litres': 165.8}, {'country': 'Australia','litres': 139.9}, {'country': 'Austria','litres': 128.3}, {'country': 'UK','litres': 99}, {'country': 'Belgium','litres': 60}, {'country': 'The Netherlands','litres': 50}],
  25. "valueField": "litres",
  26. "titleField": "country",
  27. "balloon":{
  28. "fixedPosition":true
  29. },
  30. "export": {
  31. "enabled": true
  32. }
  33. } );
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement