$(function(){
var chartInstance = $("#chart").dxChart({
dataSource: dataSource,
series: {
argumentField: "name",
valueField: "height",
type: "bar",
color: "#E55253"
},
tooltip: {
enabled: true,
customizeTooltip: function(arg) {
return {
text: "<span class='title'>" + arg.argumentText + "</span><br /> <br />" +
"System: " + arg.point.data.system + "<br />" + "Height: " +
arg.valueText + " m"
};
}
},
title: "The Highest Mountains",
legend: {
visible: false
},
argumentAxis: {
visible: true
},
valueAxis: {
visualRange: {
startValue: 8000
},
label: {
customizeText: function() {
return this.value + " m";
}
}
}
}).dxChart("instance");
$("#print").dxButton({
icon: "print",
text: "Print",
onClick: function() {
chartInstance.print();
}
});
$("#export").dxButton({
icon: "export",
text: "Export",
onClick: function() {
chartInstance.exportTo("Example", "png");
}
});
});
<!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/20.2.5/css/dx.common.css" />
<link rel="stylesheet" type="text/css" href="https://cdn3.devexpress.com/jslib/20.2.5/css/dx.light.css" />
<script src="https://cdn3.devexpress.com/jslib/20.2.5/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 id="buttonGroup">
<div id="print"></div>
<div id="export"></div>
</div>
</div>
</body>
</html>
#chart {
height: 440px;
margin-bottom:30px;
}
#buttonGroup {
text-align: center;
margin-bottom: 20px;
}
#buttonGroup > .dx-button {
margin: 0 20px;
}
.title {
font-size: 15px;
font-weight: 500;
}
var dataSource = [{
name: "Everest",
height: 8848,
system: "Mahalangur Himalaya"
}, {
name: "Godwin Austen",
height: 8611,
system: "Baltoro Karakoram"
}, {
name: "Kangchenjunga",
height: 8586,
system: "Kangchenjunga Himalaya"
}, {
name: "Lhotse",
height: 8516,
system: "Mahalangur Himalaya"
}, {
name: "Makalu",
height: 8485,
system: "Mahalangur Himalaya"
}, {
name: "Cho Oyu",
height: 8188,
system: "Mahalangur Himalaya"
}];