Highcharts Demo
author(s):
Torstein Hønsi
HTML
<script src="http://code.highcharts.com/highcharts.js"></script>
<div id="container" style="height: 400px; width: 500px"></div>
JavaScript
$(function () {
var chart = new Highcharts.Chart({
customProp: 'hello', // custom property #1
chart: {
customProp: 'world', // custom property #2
renderTo: 'container'
},
yAxis: {
title: "stuff",
labels: {
formatter: function() { // WHY IS this.chart.customProp undefined?
return this.value +' km ' + this.chart.options.customProp;
}
}
},
series: [{ data: [29.9, 71.5, 106.4, 129.2] }]
});
});