Score card
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: 500px; margin: 0 auto"></div>
JavaScript
$(function () {
$('#container').highcharts({
chart: {
type: 'scatter'
},
title: {
text: 'Score card'
},
xAxis: {
min:0,
max:100
},
yAxis: {
min:0,
max:100
},
plotOptions: {
series: {
lineWidth: 1
}
},
series: [{
data: [[30, 80],[20, 20]]
}]
});
});