Skip to main content
Nintex Community Menu Bar

Turn a Donut Chart into a Guage

  • July 8, 2024
  • 0 replies
  • 7 views

Forum|alt.badge.img+18

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 = arguments[0];
$.extend(args.plotOptions.pie,{startAngle:-90, endAngle:90});

This topic has been closed for replies.