This sample demonstrates the Stock chart type.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Stock 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">
function round(d) {
return Math.round(100 * d) / 100;
}
var data = [];
var date = new Date(2010, 0, 1);
var high = Math.random() * 40;
var close = high - Math.random();
var low = close - Math.random();
var open = (high - low) * Math.random() + low;
var oldOpen;
data.push([date, round(open), round(high), round(low), round(close)]);
for (var day = 2; day <= 60; day++) {
date = new Date(2010, 0, day);
high = open + Math.random();
close = high - Math.random();
low = close - Math.random();
oldOpen = open;
open = (high - low) * Math.random() + low;
if (low > oldOpen) {
low = oldOpen;
}
data.push([date, round(open), round(high), round(low), round(close)]);
}
var chart = new dvxCharts.Chart({
title: {
text: 'Stock Chart'
},
legend: {
visible: false
},
animation: {
duration: 1
},
series: [
{
title: 'Price Index',
type: 'stock',
data: data,
pointWidth: 0.9
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" style="width: 600px; height: 300px;">
</div>
</div>
</body>
</html>