This sample demonstrates the Scatter chart type.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Scatter 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">
var data1 = [];
var data2 = [];
var yValue1 = 100;
var yValue2 = 20;
for (var i = 0; i < 20; i++) {
yValue1 += Math.round(Math.random() * 20 - 10);
data1.push([i, yValue1]);
yValue2 += Math.round(Math.random() * 20 - 10);
data2.push([i, yValue2]);
}
var chart = new dvxCharts.Chart({
title: {
text: 'Scatter Chart'
},
animation: {
duration: 1
},
series: [
{
title: 'Scatter 1',
type: 'scatter',
data: data1,
markers: {
type: 'diamond',
size: 8
}
},
{
title: 'Scatter 2',
type: 'scatter',
data: data2,
markers: {
type: 'rectangle',
size: 8
}
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>