Sina
Sina

Reputation: 183

Highcharts - Tooltip and series name are out of their boxes in chrome

I'm using highcharts 2.3.3 and I use the following code to describe the tooltip of the chart.

tooltip: {
    formatter: function() {
        return '<b>' + Highcharts.dateFormat('%b %e, %Y', this.x) + '</b><br/>'+ this.y;
    }
},

The tooltip has no problem in firefox, but in chrome the text is shown out of the tooltip box. I also have this problem with series name. The name is out of the box. What's the problem?

Upvotes: 2

Views: 786

Answers (2)

MBehtemam
MBehtemam

Reputation: 7919

if it dosent work you can set useHTML property of tooltip to ture,

  tooltip:{
      useHTML:true
    }

Upvotes: 4

Sina
Sina

Reputation: 183

Actually the problem was about my html file being right to left. I added left to right class and direction to my chart div and everything is ok now.

Upvotes: 3

Related Questions