Last active
August 29, 2015 14:06
-
-
Save karanrajs/7a59533c6226cfc820a8 to your computer and use it in GitHub Desktop.
Gauage chart using Amcharts
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
AmCharts.makeChart("chartdiv", | |
{ | |
"type": "gauge", | |
"theme": "light", | |
"arrows": [ | |
{ | |
"id": "GaugeArrow-1" | |
}, | |
{ | |
"id": "GaugeArrow-2" | |
}, | |
{ | |
"id": "GaugeArrow-3" | |
} | |
], | |
"axes": [ | |
{ | |
"axisThickness": 1, | |
"bottomText": overall +" %", | |
"bottomTextYOffset": -20, | |
"endValue": 100, | |
"id": "GaugeAxis-1", | |
"valueInterval": 10, | |
"bands": [ | |
{ | |
"color": "#ea3838", | |
"endValue": 75, | |
"id": "GaugeBand-1", | |
"startValue": 0 | |
}, | |
{ | |
"color": "#ffac29", | |
"endValue": 90, | |
"id": "GaugeBand-2", | |
"startValue": 75 | |
}, | |
{ | |
"color": "#00CC00", | |
"endValue": 100, | |
"id": "GaugeBand-3", | |
"innerRadius": "95%", | |
"startValue": 90 | |
} | |
] | |
} | |
], | |
"allLabels": [], | |
"balloon": {}, | |
"titles": [ | |
{ | |
"id": "Title-1", | |
"size": 15, | |
"text": "Over All Code Coverage" | |
} | |
], | |
"arrows": [ | |
{ | |
"value": overall | |
} | |
] | |
} | |
); | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment