Sample Gauge Shapes
CSS
/*CSS*/
HTML
JS
// JS
var $chartEl = $('#chartDiv'),chart;
$chartEl.JSC({
  defaultSeriesType: 'gauge',
  defaultSeries: { angleSweep: 180  },
  yAxis: { scaleRange: [0,80 ]  },
  titleLabelText: 'Clipped and circular gauge',
  series: [
    {points: [  { y: 65  }] },
    {type: 'gauge Circle',points: [  { y: 45  }] }
  ]
});
chart = $chartEl.JSC();
PHP