Turn a Donut Chart into a Guage

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! :slight_smile:

A before render snippet like this does the trick:

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