This sample demonstrates how the funnel series can be used to dispaly a pyramid chart.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Pyramid 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>
<style>
.mySeries .dvx-chart-series-label {
font-size: 15px;
fill: white;
}
</style>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: {
text: 'Pyramid Chart'
},
legend: {
title: 'Countries'
},
animation: {
duration: 1
},
series: [
{
type: 'funnel',
class: 'mySeries',
spacing: 0,
dynamicSlope: false,
dynamicHeight: true,
inverted: true,
neckRatio: 0.1,
labels: {
},
data: [['United States', 200], ['United Kingdom', 220], ['Germany', 260],
['India', 280], ['Russia', 450], ['China', 600]]
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>