This sample demonstrates how to add plot bands.
For detailed implementation, please take a look at the HTML code tab.
<!DOCTYPE html>
<html>
<head>
<title>Plot Bands 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>
.plotBand1 .dvx-chart-axis-plot-band {
fill: #fcb441;
}
.plotBand2 .dvx-chart-axis-plot-band {
fill: #e0400a;
}
</style>
<script lang="javascript" type="text/javascript">
var chart = new dvxCharts.Chart({
title: { text: 'Plot Bands' },
animation: { duration: 1 },
axes: [
{
location: 'left',
type: 'linear',
majorGridLines: {
strokeDashArray: [1, 3]
},
plotBands: [
{
class: 'plotBand1',
from: 40,
to: 60,
zIndex: 0, // Posible values - 0, 1, 2
title: 'Good'
},
{
class: 'plotBand2',
from: 60,
to: 70,
zIndex: 0, // Posible values - 0, 1, 2
title: 'Very Good'
}
]
}
],
series: [
{
type: 'column',
data: [['A', 45], ['B', 35],
['C', 68], ['D', 50], ['E', 5], ['F', 44]]
}
]
});
chart.write('container');
</script>
</head>
<body>
<div>
<div id="container" class="example-container">
</div>
</div>
</body>
</html>