FusionCharts - Adding Trend-Zones in spark column chart

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>
<!-- Adding Trend-Zones in Sparkcolumn chart
    
    Attribute
        # startvalue - The starting value for the trendline. Say, if we want to plot a slanted trendline from value 102 to 109, the startValue will be 102.

        #endValue - The ending y-axis value for the trendline. Say, if we want to plot a slanted trendline from value 102 to 109, the endValue will be 109. If we do not specify a value for endValue, it will automatically assume the same value as startValue.

        # isTrendZone - Whether the trend will display a line or a zone (filled colored rectangle).
 -->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var revenueChart = new FusionCharts({
      type: 'sparkcolumn',
      renderAt: 'chart-container',
      width: '450',
      height: '80',
      dataFormat: 'json',
      dataSource: {
        "chart": {
          "theme": "fusion",
          "caption": "Revenue by Month",
          "subcaption": "Last year",
          "subCaptionFontSize": "11",
          "numberPrefix": "$",
          "highColor": "#6baa01",
          "lowColor": "#e44a00",
          "chartBottomMargin": "30"
        },
        "dataset": [{
          "data": [{
              "value": "783000"
            },
            {
              "value": "601000"
            },
            {
              "value": "515000"
            },
            {
              "value": "315900"
            },
            {
              "value": "388000"
            },
            {
              "value": "433000"
            },
            {
              "value": "910000"
            },
            {
              "value": "798000"
            },
            {
              "value": "483300"
            },
            {
              "value": "562000"
            },
            {
              "value": "359400"
            },
            {
              "value": "485000"
            }
          ]
        }],
        //Adding trend-zone in chart
        "trendlines": [{
          "line": [{
            "startValue": "450000",
            "endValue": "650000",
            "isTrendZone": "1",
            "color": "#ff0000"
          }]
        }]
      }
    })
    .render();
});