We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents eb934cd + 9884fe2 commit 4b1d318Copy full SHA for 4b1d318
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