Reputation: 1854
I have something similar to the highcharts combination chart example, with a pie chart embedded into another chart.
However, what seems like the obvious way to remove a tooltip (tooltip:{enabled:false}
) fails to do the job.
My attempt is reflected in this jsfiddle: http://jsfiddle.net/gh/get/jquery/1.9.1/highslide-software/highcharts.com/tree/master/samples/highcharts/demo/combo/
Thanks!
Upvotes: 0
Views: 3957
Reputation: 37578
You can check type of chart,
var s;
if (this.series.options.type === 'pie') { // the pie chart
return false;
} else {
s = ''+
this.x +': '+ this.y;
}
return s;
Upvotes: 1