We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb934cd commit 9884fe2Copy full SHA for 9884fe2
jquery.highchartTable.js
@@ -405,6 +405,9 @@
405
return '<b>'+ this.series.name +'</b><br/>'+ Highcharts.dateFormat('%e. %b', this.x) +' : '+ this.y;
406
} else {
407
var xValue = typeof xValues[this.point.x] != 'undefined' ? xValues[this.point.x] : this.point.x;
408
+ if (globalGraphType === 'pie') {
409
+ return '<strong>' + this.series.name + '</strong><br />' + xValue + ' : ' + this.point.y;
410
+ }
411
return '<strong>' + this.series.name + '</strong><br />' + xValue + ' : ' + this.point.name;
412
}
413
0 commit comments