FusionCharts - Gallery Example - TreeMap Chart in JavaScript
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>
<!-- Treemap chart showing the sales analysis of the cell phones for Harry's SuperMart.
Click nodes to traverse up and down the treemap. After the chart is traversed down once, the Back to Parent and Back to Top buttons, in the top-right corner, can be used for traversing up.
-->
<div id="chart-container">FusionCharts will render here</div>
JavaScript
FusionCharts.ready(function() {
var visitChart = new FusionCharts({
type: 'treemap',
renderAt: 'chart-container',
width: '650',
height: '650',
dataFormat: 'json',
dataSource: {
"chart": {
"animation": "0",
"hideTitle": "1",
"plotToolText": "<div><b>$label</b><br/><b>SAR (body) : </b>$svalue W/kg<br/><b>Units Sold : </b>$value</div>",
"horizontalPadding": "0",
"verticalPadding": "0",
"plotborderthickness": ".5",
"plotbordercolor": "ffffff",
"chartBottomMargin": "0",
"labelGlow": "0",
"labelFontColor": "ffffff",
"showLegend": "1",
"legendpadding": "0",
"legendItemFontSize": "10",
"legendItemFontBold": "1",
"legendPointerWidth": "8",
"legenditemfontcolor": "3d5c5c",
"legendScaleLineThickness": "0",
"legendCaptionFontSize": "10",
"algorithm": "squarified",
"caption": "Harry's SuperMart : Sales of mobile devices in last quarter",
"theme": "fusion",
"subcaption": "Analysis based on SAR values",
"legendCaption": "Specific Absorption Rate (SAR) in W/kg"
},
"data": [{
"label": "Top Selling Brands",
"fillcolor": "595f5d",
"value": "5800",
"data": [{
"label": "Samsung",
"fillcolor": "838986",
"value": "2217",
"data": [{
"label": "Galaxy Note 4",
"value": "519",
"sValue": "1.09",
"fillColor": "1b7ac7"
}, {
"label": "Galaxy S6 Edge",
"value": "448",
"sValue": "1.48"
}, {
"label": "Galaxy S6",
"value": "416",
"sValue": "1.13"
}, {
"label": "Galaxy J1",
"value": "304",
"sValue": "1.18"
}, {
"label": "Galaxy J7",
"value": "159",
"sValue": "1.36"
...