Plotband tooltip hover with default styling - Javascript highcharts

Javascript examples for highcharts:Chart Tooltip

Description

Plotband tooltip hover with default styling

Demo Code

ResultView the demo in separate window

<html>
   <head> 
      <title>Highcharts Demo</title> 
      <meta name="viewport" content="width=device-width, initial-scale=1"> 
      <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  w  w .  j  a  v a  2  s  .  c  o m
    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(chart.series[1].points[2]);
                        $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}]
    });
});

      </script> 
   </head> 
   <body> 
      <div id="container" style="height: 300px"></div> 
      <div id="report"></div> 
      <script src="https://code.highcharts.com/highcharts.js"></script>  
   </body>
</html>

Related Tutorials