Create boxplot chart
Description
The following code shows how to create boxplot chart.
Example
<!DOCTYPE html>
<html>
<head>
<script type='text/javascript'
src='https://ajax.googleapis.com/ajax/libs/jquery/1.7.2/jquery.min.js'></script>
<script type='text/javascript'>
$(function () {<!--from w ww . j a v a 2 s .c o m-->
$('#container').highcharts({
chart: {
type: 'boxplot'
},
xAxis: {
categories: ['1', '2', '3', '4', '5'],
title: {
text: 'Experiment No.'
}
},
series: [{
name: 'Observations',
data: [
[76, 81, 88, 85, 65],
[73, 83, 99, 90, 80],
[71, 72, 87, 80, 18],
[72, 82, 86, 81, 50],
[83, 86, 84, 82, 10]
]
}]
});
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<script src="http://code.highcharts.com/highcharts-more.js"></script>
<div id="container" style="height: 400px"></div>
</body>
</html>