FusionCharts - Error Bar chart, with customized error bars

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>
<!-- 
    Error Bar configuration in ErrorBar 2D chart.
    Attributes :
		# halferrorbar - Set to 0,
		# errorBarColor - Set to #990000,
		# errorBarAlpha - Set to 50,
		# errorBarThickness - Set to 2,
		# errorBarWidthPercent - Set to 30

-->
<div id="chart-container">FusionCharts will render here</div>

JavaScript

FusionCharts.ready(function() {
  var lifeSpanChart = new FusionCharts({
    type: 'errorbar2d',
    renderAt: 'chart-container',
    width: '700',
    height: '400',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "theme": "fusion",
        "xaxisname": "Systems",
        "yaxisname": "Life Span (years)",
        "caption": "Systems Life Span - Top 3 stores",
        "subcaption": "(With Error Values)",
        "numbersuffix": " Years",
        //Error bar configuration
        "halferrorbar": "0",
        "errorBarColor": "#990000",
        "errorBarAlpha": "50",
        "errorBarThickness": "2",
        "errorBarWidthPercent": "30"
      },
      "categories": [{
        "category": [{
            "label": "Central AC"
          },
          {
            "label": "Computers"
          },
          {
            "label": "Bar-code Scanners"
          },
          {
            "label": "Packaging Machines"
          },
          {
            "label": "Chilling Compartments"
          }
        ]
      }],
      "dataset": [{
        "seriesname": "Daly City Serramonte",
        "data": [{
            "value": "8",
            "errorvalue": "2"
          },
          {
            "value": "3",
            "errorvalue": "0.5"
          },
          {
            "value": "2",
            "errorvalue": "1"
          },
          {
            "value": "6",
            "errorvalue": "1.8"
          },
          {
            "value": "8",
            "errorvalue": "1.2"
          }
        ]
      }, {
        "seriesname": "Bakersfield Central",
        "data": [{
            "value": "7",
            "errorvalue": "1"
          },
          {
            "value": "4",
            "errorvalue": "0.5"
          },
          {
            "value": "2",
            "errorvalue": "1"
          },
          {
            "value": "4",
            "errorvalue": "0.8"
          },
          {
            "value": "7",
            "errorvalue": "1"
 ...