Create options and pass into Chart constructor
Description
The following code shows how to create options and pass into Chart constructor.
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'>
var chart; // globally available
$(document).ready(function() {<!--from w w w . j a v a 2 s. c o m-->
var items = [{
"name": "Male",
"data": [10, 34, 30]
}, {
"name": "Female",
"data": [20, 22, 15]
}, {
"name": "Male",
"data": [22, 21, 21]
}, {
"name": "Female",
"data": [13, 20, 31]
}];
var options = {
chart: { renderTo: 'container', type: 'bar' },
series: items
};
//Create the chart
chart = new Highcharts.Chart(options);
});
</script>
</head>
<body>
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px"></div>
</body>
</html>