This sample demonstrates the Stacked and Grouped Column chart type.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Stacked and Grouped Column Chart Example - JavaScript Chart by dvxCharts</title>
<link rel="stylesheet" type="text/css" href="../../css/dvxCharts.chart.min.css" />
<link rel="stylesheet" type="text/css" href="../../themes/base/styles.css" />
<script src="../../js/dvxCharts.chart.min.js" type="text/javascript"></script>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no">
<style>
.example-container {
width: 100%;
max-width: 500px;
height: 300px;
}
</style>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: {
text: 'Stacked and Grouped Column Chart'
},
animation: {
duration: 1
},
axes: [
{
type: 'category',
location: 'bottom',
categories: ['2000', '2001', '2002', '2003']
}
],
series: [
{
type: 'stackedColumn',
title: 'Series 1',
data: [62, 70, 68, 58],
stackedGroupName: 'Group1'
},
{
type: 'stackedColumn',
title: 'Series 2',
data: [56, 30, 62, 65],
stackedGroupName: 'Group1'
},
{
type: 'stackedColumn',
title: 'Series 3',
data: [33, 42, 54, 23],
stackedGroupName: 'Group2'
},
{
type: 'stackedColumn',
title: 'Series 4',
data: [43, 52, 64, 33],
stackedGroupName: 'Group2'
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>