Angular Gauge - Customizing trend arc radius

Created using FusionCharts Suite XT - www.fusioncharts.com

by FusionCharts

HTML

<script src="https://cdn.fusioncharts.com/fusioncharts/latest/fusioncharts.js"></script>
<script src="https://cdn.fusioncharts.com/fusioncharts/latest/themes/fusioncharts.theme.fusion.js"></script>
<!-- AngularGauge - Customizing radius of the trend arc.    

Element
    # trendpoints

Attribute:
    # radius - Radius (in pixels)  for trend point/outer side of trend arc.
    # innerRadius - In case of trend-arc, radius (in pixels) for inner side of arc. 
   
-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var cSatScoreChart = new FusionCharts({
    type: 'angulargauge',
    renderAt: 'chart-container',
    width: '420',
    height: '300',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "caption": "Average Customer Satisfaction Score",
        "subcaption": "Actual vs Target",
        "lowerLimit": "0",
        "upperLimit": "100",
        "showValue": "1",
        "trendValueDistance": "2",
        "valueBelowPivot": "1",
        "gaugeFillMix": "{dark-40},{light-40},{dark-20}",
        "theme": "fusion"
      },
      "colorRange": {
        "color": [{
            "minValue": "0",
            "maxValue": "50",
            "code": "#e44a00"
          },
          {
            "minValue": "50",
            "maxValue": "75",
            "code": "#f8bd19"
          },
          {
            "minValue": "75",
            "maxValue": "100",
            "code": "#6baa01"
          }
        ]
      },
      "dials": {
        "dial": [{
          "value": "67"
        }]
      },
      "trendpoints": {
        "point": [{
          "startValue": "80",
          "endValue": "100",
          "radius": "180",
          "innerRadius": "5",
          "displayValue": "Target",
          "color": "#0075c2",
          "alpha": "40"
        }]
      }
    }
  }).render();
});