Highcharts Demo
author(s):
Torstein Hønsi
by HemalathaThanigaivel
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
JavaScript
$(function () {
Highcharts.chart('container', {
chart: {
type: 'spline'
},
title: {
text: 'Square legend symbols'
},
xAxis: {
categories: ['Jan', 'Feb', 'Mar', 'Apr']
},
legend: {
layout: 'vertical',
align: 'right',
},
plotOptions: {
spline: {
marker: {
// enabled: false
}
}
},
series: [{
data: [1, 3, 2, 4],
}, {
data: [6, 4, 5, 3]
}, {
data: [2, 7, 6, 5]
}]
});
});