$(function(){
$("#chart").dxChart({
dataSource: dataSource,
commonSeriesSettings: {
argumentField: "state",
type: "bar",
hoverMode: "allArgumentPoints",
selectionMode: "allArgumentPoints",
label: {
visible: true,
format: {
type: "fixedPoint",
precision: 0
}
}
},
series: [
{ valueField: "year2004", name: "2004" },
{ valueField: "year2001", name: "2001" },
{ valueField: "year1998", name: "1998" }
],
title: "Gross State Product within the Great Lakes Region",
legend: {
verticalAlignment: "bottom",
horizontalAlignment: "center"
},
"export": {
enabled: true
},
onPointClick: function (e) {
e.target.select();
}
});
});
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<title>DevExtreme Demo</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge" />
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0" />
<script src="https://ajax.googleapis.com/ajax/libs/jquery/3.1.0/jquery.min.js"></script>
<script>window.jQuery || document.write(decodeURIComponent('%3Cscript src="js/jquery.min.js"%3E%3C/script%3E'))</script>
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.common.css" />
<link rel="dx-theme" data-theme="generic.light" href="https://cdn3.devexpress.com/jslib/18.2.6/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/18.2.6/js/dx.all.js"></script>
<script src="data.js"></script>
<link rel="stylesheet" type ="text/css" href ="styles.css" />
<script src="index.js"></script>
</head>
<body class="dx-viewport">
<div class="demo-container">
<div id="chart"></div>
</div>
</body>
</html>
#chart {
height: 440px;
}
var dataSource = [{
state: "Illinois",
year1998: 423.721,
year2001: 476.851,
year2004: 528.904
}, {
state: "Indiana",
year1998: 178.719,
year2001: 195.769,
year2004: 227.271
}, {
state: "Michigan",
year1998: 308.845,
year2001: 335.793,
year2004: 372.576
}, {
state: "Ohio",
year1998: 348.555,
year2001: 374.771,
year2004: 418.258
}, {
state: "Wisconsin",
year1998: 160.274,
year2001: 182.373,
year2004: 211.727
}];