Solid Gauge
This demo shows on how to use Angular Gauge chart’s bands placed at different radii to create a solid gauge chart.
Demo source
<!-- Styles -->
<style>
#chartdiv {
width: 100%;
height: 500px;
margin: auto;
}
</style>
<!-- Resources -->
<script src="https://www.amcharts.com/lib/3/amcharts.js"></script>
<script src="https://www.amcharts.com/lib/3/gauge.js"></script>
<script src="https://www.amcharts.com/lib/3/plugins/export/export.min.js"></script>
<link rel="stylesheet" href="https://www.amcharts.com/lib/3/plugins/export/export.css" type="text/css" media="all" />
<!-- Chart code -->
<script>
var gaugeChart = AmCharts.makeChart("chartdiv", {
"type": "gauge",
"theme": "none",
"axes": [{
"axisAlpha": 0,
"tickAlpha": 0,
"labelsEnabled": false,
"startValue": 0,
"endValue": 100,
"startAngle": 0,
"endAngle": 270,
"bands": [{
"color": "#eee",
"startValue": 0,
"endValue": 100,
"radius": "100%",
"innerRadius": "85%"
}, {
"color": "#84b761",
"startValue": 0,
"endValue": 80,
"radius": "100%",
"innerRadius": "85%",
"balloonText": "90%"
}, {
"color": "#eee",
"startValue": 0,
"endValue": 100,
"radius": "80%",
"innerRadius": "65%"
}, {
"color": "#fdd400",
"startValue": 0,
"endValue": 35,
"radius": "80%",
"innerRadius": "65%",
"balloonText": "35%"
}, {
"color": "#eee",
"startValue": 0,
"endValue": 100,
"radius": "60%",
"innerRadius": "45%"
}, {
"color": "#cc4748",
"startValue": 0,
"endValue": 92,
"radius": "60%",
"innerRadius": "45%",
"balloonText": "92%"
}, {
"color": "#eee",
"startValue": 0,
"endValue": 100,
"radius": "40%",
"innerRadius": "25%"
}, {
"color": "#67b7dc",
"startValue": 0,
"endValue": 68,
"radius": "40%",
"innerRadius": "25%",
"balloonText": "68%"
}]
}],
"allLabels": [{
"text": "First option",
"x": "49%",
"y": "5%",
"size": 15,
"bold": true,
"color": "#84b761",
"align": "right"
}, {
"text": "Second option",
"x": "49%",
"y": "15%",
"size": 15,
"bold": true,
"color": "#fdd400",
"align": "right"
}, {
"text": "Third option",
"x": "49%",
"y": "24%",
"size": 15,
"bold": true,
"color": "#cc4748",
"align": "right"
}, {
"text": "Fourth option",
"x": "49%",
"y": "33%",
"size": 15,
"bold": true,
"color": "#67b7dc",
"align": "right"
}],
"export": {
"enabled": true
}
});
</script>
<!-- HTML -->
<div id="chartdiv"></div>