Meter chart + Ticks + Interval + Export
by amrutaJgtp
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/highcharts-more.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<div id="container" style="width:1580px; height:693px"></div>
JavaScript
Highcharts.chart('container', {
"chart": {
"inverted": false,
"backgroundColor": "rgba(255,255,255,0)",
"plotBackgroundColor": "rgba(255,255,255,0)",
"zoomType": "xy",
"resetZoomButton": {
"theme": {
"fill": "#ffffff",
"stroke": "#003ce1",
"r": 0,
"style": {
"color": "#003ce1",
"cursor": "pointer",
"fontSize": "0.714rem",
"fontFamily": "Lucida Sans Unicode,Verdana,Helvetica,Arial"
},
"states": {
"hover": {
"fill": "#003ce1",
"stroke": "#003ce1",
"style": {
"color": "#ffffff",
"fontSize": "0.714rem",
"fontFamily": "Lucida Sans Unicode,Verdana,Helvetica,Arial"
}
}
}
}
}
},
"title": {
"text": ".",
"style": {
"color": "rgba(255, 255, 255, 0)",
"fontSize": "1px"
}
},
"tooltip": {
"enabled": true,
"shared": false,
"borderWidth": 1,
"borderRadius": 1,
"backgroundColor": "#ffffff",
"style": {
"color": "#000000",
"fontSize": "1rem",
"fontFamily": "Lucida Sans Unicode,Verdana,Helvetica,Arial",
"fontWeight": "normal",
"fontStyle": "normal",
"textDecoration": "none"
},
"crosshairs": [null, null],
"followPointer": true
},
"plotOptions": {
"gauge": {
"animation": {
"duration": 700
},
"cursor": "pointer",
"allowPointSelect": true,
"showInLegend": true,
"turboThreshold": 0,
"stickyTracking": false,
"events": {},
"point": {
"events": {}
}
}
},
"legend": {
"enabled": true,
"item": {},
"borderWidth": 0,
"layout": "horizontal",
"eQLegendPlacement": "CHART",
"backgroundColor": "rgba(255,255,255,0)",
"itemStyle": {
"color": "#000000",
"fontSize": "1rem",
"fontFamily": "Lucida Sans...