Advertisement
Guest User

Untitled

a guest
Mar 1st, 2017
70
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.75 KB | None | 0 0
  1. <script>var chart4 = AmCharts.makeChart("chartdiv4", {
  2. "theme": "black",
  3. "type": "gauge",
  4. "color":"#FFFFFF",
  5. "precision":0,
  6. "axes": [{
  7. "color":"#FFFFFF",
  8. "topText": "4",
  9. "topTextFontSize": 10,
  10. "topTextYOffset": 40,
  11. // "axisColor": "#31d6ea",
  12. "axisThickness": 0,
  13. "startValue": 2.1,
  14. "endValue": 5.1,
  15. "gridInside": true,
  16. "inside": true,
  17. "radius": "50%",
  18. "minorTickInterval": 5,
  19. "valueInterval": 25,
  20. "tickColor": "#fff",
  21. "startAngle": -180,
  22. "endAngle": 90,
  23. "bandOutlineAlpha": 0,
  24. "bands": [{
  25. "color": "#999999",
  26. "startValue": -50,
  27. "endValue": 150,
  28. "radius": "120%",
  29. "innerRadius": "110%",
  30. "balloonText": "90%"
  31. }]
  32. }],
  33. "arrows": [{
  34. "color": "#CC0000",
  35. "alpha": 1,
  36. "innerRadius": "20%",
  37. "nailRadius": 0,
  38. "radius": "80%"
  39. }]
  40. });
  41. </script>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement