student phase1
Kondal
by Kondal Durgam
HTML
<script src="https://code.highcharts.com/highcharts.js"></script>
<script src="https://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
Highcharts.chart('container', {
chart: {
type: 'areaspline'
},
credits: {
enabled: false
},
exporting: {
enabled: false
},
title: {
text: ''
},
xAxis: {
categories: ['Jan', 'Jan22', 'Today', 'Mar20', 'Apr30', 'Before Mar 2019'],
tickmarkPlacement: 'on',
title: {
enabled: false
}
},
yAxis: {
title: {
text: ''
},
min:10,
max:100,
/* labels: {
formatter: function () {
return this.value / 1000;
}
} */
},
tooltip:{
enabled:false,
},
plotOptions: {
area: {
stacking: 'normal',
lineColor: '#ff7c7c',
lineWidth: 1,
marker: {
lineWidth: 2,
lineColor: 'blue'
}
}
},
series: [{
showInLegend:false,
name: '',
data: [20, 25, 25,25 , 25, 100]
}]
});