Skip to main content

We like to use guage charts in some of the other parts of our organization to display current values of a metric. Skuid/Highcharts doesn’t have a specific guage chart (as far as I’m aware), but I just discovered that we can turn a donut chart into a guage by setting the start and end angles of the chart! 🙂

A before render snippet like this does the trick:

var args = argumentsg0];
$.extend(args.plotOptions.pie,{startAngle:-90, endAngle:90});