Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

How to move tooltip position in Highchart?

Tags:

highcharts

I am using highcharts.js to build horizontal bar chart. Its working correctly but by default tooltip appears horizontally so I want tooltip position to be vertical instead of horizontal.

Is it possible to achieve that? Any help appreciated! JSFiddle - Example

Sample Code:

$(function () {
    var chart;

    $(document).ready(function() {

        chart = new Highcharts.Chart({

            chart: {

                renderTo: 'container',

                type: 'bar'

            },

            title: {

                text: 'Stacked bar chart'

            },

            xAxis: {

                categories: ['Apples', 'Oranges', 'Pears', 'Grapes', 'Bananas']

            },

            yAxis: {

                min: 0,

                title: {

                    text: 'Total fruit consumption'

                },
                stackLabels: {
                enabled: true,
                style: {
                    fontWeight: 'bold',
                    color: (Highcharts.theme && Highcharts.theme.textColor) || 'gray'
                }
            }

            },

            legend: {

               align: 'right',
            x: -100,
            verticalAlign: 'top',
            y: 20,
            floating: true,
            backgroundColor: (Highcharts.theme && Highcharts.theme.legendBackgroundColorSolid) || 'white',
            borderColor: '#CCC',
            borderWidth: 1,
            shadow: false

            },

            tooltip: {

              formatter: function() {
                return '<b>'+ this.x +'</b><br/>'+
                    this.series.name +': '+ this.y +'<br/>'+
                    'Total: '+ this.point.stackTotal;
            }

            },

            plotOptions: {

                series: {

                    stacking: 'normal',
                    dataLabels: {
                    enabled: true,
                    color: (Highcharts.theme && Highcharts.theme.dataLabelsColor) || 'white'
                }


                }

            },

                series: [{

                name: 'John',

                data: [5, 3, 4, 7, 2]

            }, {

                name: 'Jane',

                data: [2, 2, 3, 2, 1]

            }, {

                name: 'Joe',

                data: [3, 4, 4, 2, 5]

            }]

        });

    });


});

Expected Output: enter image description here

like image 503
Sumit Deshpande Avatar asked Aug 29 '16 03:08

Sumit Deshpande


1 Answers

I am able to fix this issue using Tooltip.positioner as following -

tooltip: {

    formatter: function() {
        return '<b>' + this.x + '</b><br/>' +
            this.series.name + ': ' + this.y + '<br/>' +
            'Total: ' + this.point.stackTotal;
    },
    positioner: function(labelWidth, labelHeight, point) {
        var tooltipX = point.plotX + 20;
        var tooltipY = point.plotY - 30;
        return {
            x: tooltipX,
            y: tooltipY
        };
    }
},
like image 71
Sumit Deshpande Avatar answered Dec 31 '22 18:12

Sumit Deshpande