JSFiddle - React, Tailwind, and code Playground
by Ismail Ibraheem Shurrab
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/modules/exporting.js"></script>
<div id="container" style="min-width: 310px; height: 400px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'area'
},
title: {
text: 'نتائج اختبارات الطالب في تست'
},
subtitle: {
text: 'نتائج الإختبارات الأخيرة'
},
xAxis: {
categories: ['2012-5', '2014-6', '2014-8', '2015-4', '2015-3'],
tickmarkPlacement: 'on',
title: {
enabled: false
}
},
yAxis: {
title: {
text: 'علامة'
},
labels: {
formatter: function () {
return this.value;
}
}
},
tooltip: {
shared: true,
valueSuffix: ' علامة'
},
plotOptions: {
area: {
stacking: 'normal',
lineColor: '#666666',
lineWidth: 1,
marker: {
lineWidth: 1,
lineColor: '#666666'
}
}
},
series: [{
name: 'محمد',
data: [20, 10, 15, 30, 11, 22, 30]
}]
});
});