This sample demonstrates how to specify the axis titles.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Axis Titles 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>
<style>
.yAxis .dvx-chart-axis-title {
fill: green;
}
.xAxis .dvx-chart-axis-title {
fill: green;
}
</style>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: {
text: 'Axis Titles'
},
animation: {
duration: 1
},
axes: [
{
location: 'bottom',
class: 'xAxis',
title: {
text: 'Axis Title X'
}
},
{
location: 'left',
class: 'yAxis',
title: {
text: 'Axis Title Y'
}
}
],
series: [
{
type: 'line',
title: 'Series 1',
data: [[1, 62], [2, 60], [3, 68], [4, 58], [5, 52], [6, 60], [7, 48]]
},
{
type: 'line',
title: 'Series 2',
data: [[1, 46], [2, 40], [3, 62], [4, 65], [5, 60], [6, 36], [7, 70]]
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>