This sample demonstrates how to specify the labels position - inside or outside.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Inside Labels 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 addDays(date, value) {
var newDate = new Date(date.getTime());
newDate.setDate(date.getDate() + value);
return newDate;
}
var data1 = [];
var data2 = [];
var yValue1 = 50;
var yValue2 = 200;
var date = new Date(2010, 0, 1);
for (var i = 0; i < 200; i++) {
yValue1 += Math.random() * 10 - 5;
data1.push([date, yValue1]);
yValue2 += Math.random() * 10 - 5;
data2.push([date, yValue2]);
date = addDays(date, 1);
}
var chart = new dvxCharts.Chart({
title: 'Inside Labels',
animation: {
duration: 1
},
axes: [
{
location: 'bottom',
zoomEnabled: true,
visibleMinimum: new Date(2010, 1, 1),
visibleMaximum: new Date(2010, 4, 1),
labels: {
position: 'inside',
hAlign: 'right'
},
majorTickMarks: {
position: 'inside'
}
},
{
location: 'left',
labels: {
position: 'inside',
vAlign: 'top'
},
majorTickMarks: {
visible: false
}
}
],
series: [
{
type: 'line',
data: data1,
markers: null
},
{
type: 'line',
data: data2,
markers: null
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>