FusionCharts - Marimekko Chart with actual values

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>
<!-- 
    Marimekko Chart with actual values.

    Attribute: 
        # usePercentDistribution - Set to 0.

-->

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

JavaScript

FusionCharts.ready(function() {
  var salesByBrandChart = new FusionCharts({
    type: 'marimekko',
    renderAt: 'chart-container',
    width: '700',
    height: '400',
    dataFormat: 'json',
    dataSource: {
      "chart": {
        "caption": "Top 3 Electronic Brands in Top 3 Stores",
        "subcaption": "Last month",
        "aligncaptiontocanvas": "0",
        "yaxisname": "Statewise Sales (in %)",
        "xaxisname": "Brand",
        "numberprefix": "$",
        "showPlotBorder": "1",
        "plotBorderThickness": "0.25",
        "showxaxispercentvalues": "0",
        "showsum": "1",

        // No percentage distribution
        "usePercentDistribution": "0",
        //Theme
        "theme": "fusion"
      },
      "categories": [{
        "category": [{
            "label": "Bose"
          },
          {
            "label": "Dell"
          },
          {
            "label": "Apple"
          }
        ]
      }],
      "dataset": [{
          "seriesname": "California",
          "data": [{
              "value": "335000"
            },
            {
              "value": "225100"
            },
            {
              "value": "164200"
            }
          ]
        },
        {
          "seriesname": "Washington",
          "data": [{
              "value": "215000"
            },
            {
              "value": "198000"
            },
            {
              "value": "120000"
            }
          ]
        },
        {
          "seriesname": "Nevada",
          "data": [{
              "value": "298000"
            },
            {
              "value": "109300"
            },
            {
              "value": "153600"
            }
          ]
        }
      ]
    }
  });

  salesByBrandChart.render();
});