Highcharts Demo
author(s): Torstein Hønsi
by Mi Ku
HTML
<div id="container" style="height: 300px"></div>
<div id="report"></div>
<script src="http://code.highcharts.com/highcharts.js"></script>
JavaScript
$(function() {
var $report = $('#report');
var chart = new Highcharts.Chart({
chart: {
renderTo: 'container'
},
xAxis: {
plotBands: [{ // mark the weekend
color: '#FCFFC5',
from: Date.UTC(2010, 0, 2),
to: Date.UTC(2010, 0, 4),
events: {
click: function(e) {
$report.html(e.type);
},
mouseover: function(e) {
chart.tooltip.refresh('some text');
$report.html(e.type);
},
mouseout: function(e) {
$report.html(e.type);
}
},
label: {
text: "Show me on hover"
}}],
tickInterval: 24 * 3600 * 1000,
// one day
type: 'datetime'
},
tooltip: {
formatter: function() {
if (this.series.name == "hiddenSeries")
return 'Show me on hover in a tooltip';
else
return this.y;
}
},
series: [{
data: [29.9, 71.5, 106.4, 129.2, 144.0, 176.0, 135.6, 148.5, 216.4],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000},
{
name: "hiddenSeries",
visible: false,
color: '#4572A7',
data: [0, 0, 150, 0, 0, 0, 0, 0],
pointStart: Date.UTC(2010, 0, 1),
pointInterval: 24 * 3600 * 1000}]
});
});