This sample demonstrates the Range Column chart type.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Range 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: 'Range Column Chart'
},
animation: {
duration: 1
},
series: [
{
type: 'rangeColumn',
title: 'Series 1',
data: [['A', 33, 43], ['B', 57, 62], ['C', 13, 30],
['D', 12, 40], ['E', 35, 70], ['F', 7, 30], ['G', 24, 30]]
},
{
type: 'rangeColumn',
title: 'Series 2',
data: [['A', 23, 30], ['B', 62, 80], ['C', 50, 70],
['D', 0, 12], ['E', 15, 20], ['F', 50, 65], ['G', 4, 24]]
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>