Search code examples
javascriptjquerytooltiphighcharts

Highcharts tooltip overflow is hidden


My problem is that when the chart drawing area of is smaller than a highchart tooltip, a part of the tooltip is hidden where it overflows the chart drawing area.

I want the tooltip to be visible all the time, no matter the size of the chart drawing area.

No CSS setting helped and no higher z-index setting helped either.

Here is my example... http://twitpic.com/9omgg5

Any help will be mostly apreciated.

Thank you.


Solution

  • OK, sorry for the delay. I could not find a better solution, but I found a workaround.

    Here is what I did and what I suggest everyone to try:

    Set the tooltip.useHTML property to true (now you can have more control with html and CSS). Like this:

    tooltip: {
        useHTML: true    
    }
    

    Unset all the default tooltip peoperties that may have something to do with the default tooltip functionalities. Here is what I did...

    tooltip: {                        
        shared: false,
        borderRadius: 0,
        borderWidth: 0,
        shadow: false,
        enabled: true,
        backgroundColor: 'none'
    }
    

    Make sure that your chart container's css property "overflow" is set to visible. Also make sure that all DOM elements (div, section, etc....) that hold your chart container also have the css "overflow" property set to "visible". In this way you will make sure that your tooltip will be visibile at all times as it overflows his parent and his other "ancestors" (Is this a correct term? :)).

    Customize your tooltip formatter as you wish, using standard CSS styling. Here is what I did:

    tooltip.formatter: {
        < div class ="tooltipContainer"> Tooltip content here < /div >
    }
    

    This is how it all looks like:

    tooltip: {                        
        tooltip.formatter: {
            < div class ="tooltipContainer"> Tooltip content here < /div >
        },
        useHTML: true,
        shared: false,
        borderRadius: 0,
        borderWidth: 0,
        shadow: false,
        enabled: true,
        backgroundColor: 'none'
    }
    

    If you have a better solution, please post.