Variwide
author(s): Torstein Hønsi
by Pawan Jadhav
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/variwide.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<script src="https://code.highcharts.com/modules/export-data.js"></script>
<script src="https://code.highcharts.com/modules/accessibility.js"></script>
<figure class="highcharts-figure">
<div id="container"></div>
<p class="highcharts-description">
Variwide charts can be used to visualize a second dimension
in a column chart. Each data point is given a weight, in
addition to its value, determining the width of the column.
In this chart, the Y-Axis represents the labor cost of the
country, while the column width is proportional to the
country's GDP.
</p>
</figure>
CSS
#container {
height: 500px;
}
.highcharts-figure,
.highcharts-data-table table {
min-width: 320px;
max-width: 800px;
margin: 1em auto;
}
.highcharts-data-table table {
font-family: Verdana, sans-serif;
border-collapse: collapse;
border: 1px solid #ebebeb;
margin: 10px auto;
text-align: center;
width: 100%;
max-width: 500px;
}
.highcharts-data-table caption {
padding: 1em 0;
font-size: 1.2em;
color: #555;
}
.highcharts-data-table th {
font-weight: 600;
padding: 0.5em;
}
.highcharts-data-table td,
.highcharts-data-table th,
.highcharts-data-table caption {
padding: 0.5em;
}
.highcharts-data-table thead tr,
.highcharts-data-table tr:nth-child(even) {
background: #f8f8f8;
}
.highcharts-data-table tr:hover {
background: #f1f7ff;
}
JavaScript
Highcharts.chart('container', {
chart: {
},
title: {
text: 'Labor Costs in Europe, 2016'
},
subtitle: {
text: 'Source: <a href="http://ec.europa.eu/eurostat/web/' +
'labour-market/labour-costs/main-tables">eurostat</a>'
},
xAxis: {
type: 'linear',
min : 2,
max : 30,
tickPositions: [5, 14, 23.5,28.5]
},
caption: {
text: 'Column widths are proportional to GDP'
},
legend: {
enabled: false
},
series: [{
name: 'Labor Costs',
type: 'variwide',
data: [
[2,5, 6],
[9, 9, 11],
[21, 9, 6],
[27, 4, 3]
],
dataLabels: {
enabled: true,
format: '€{point.y:.0f}'
},
tooltip: {
pointFormat: 'Labor Costs: <b>€ {point.y}/h</b><br>' +
'GDP: <b>€ {point.z} million</b><br>'
}
},{
name :'mys1',
data :[2,4,6,8,8,9,11,15,16,17,17,19,20,20,21,21,21,22,23,23,23,25,27,29,30,30,30]
}]
});