$(() => {
const chart = $('#chart').dxChart({
palette: 'Harmony Light',
title: 'Corporations with Highest Market Value',
dataSource,
commonSeriesSettings: {
type: types[0],
argumentField: 'company',
},
argumentAxis: {
valueMarginsEnabled: false,
},
margin: {
bottom: 20,
},
series: [
{ valueField: 'y2005', name: '2005' },
{ valueField: 'y2004', name: '2004' },
],
export: {
enabled: true,
},
legend: {
verticalAlignment: 'bottom',
horizontalAlignment: 'center',
},
}).dxChart('instance');
$('#types').dxSelectBox({
dataSource: types,
value: types[0],
onValueChanged(e) {
chart.option('commonSeriesSettings.type', e.value);
},
});
});
<!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.5.1/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/22.2.6/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/22.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-demo">
<div id="chart"></div>
<div class="options">
<div class="caption">Options</div>
<div class="option">
<span>Series Type</span>
<div id="types"></div>
</div>
</div>
</div>
</div>
</body>
</html>
.options {
padding: 20px;
background-color: rgba(191, 191, 191, 0.15);
margin-top: 20px;
}
.option {
margin-top: 10px;
}
.caption {
font-size: 18px;
font-weight: 500;
}
.option > span {
margin-right: 10px;
}
.option > .dx-widget {
display: inline-block;
vertical-align: middle;
}
const dataSource = [{
company: 'ExxonMobil',
y2005: 377.28,
y2004: 270.25,
}, {
company: 'GeneralElectric',
y2005: 353.49,
y2004: 311.43,
}, {
company: 'Microsoft',
y2005: 269.86,
y2004: 273.32,
}, {
company: 'Citigroup',
y2005: 252.95,
y2004: 280.50,
}, {
company: 'Royal Dutch Shell plc',
y2005: 197.67,
y2004: 165.89,
}, {
company: 'Procted & Gamble',
y2005: 184.72,
y2004: 130.52,
}];
const types = ['splinearea', 'stackedsplinearea', 'fullstackedsplinearea'];