diff --git a/jquery.highchartTable.js b/jquery.highchartTable.js
index b5adff1..41a674d 100644
--- a/jquery.highchartTable.js
+++ b/jquery.highchartTable.js
@@ -405,6 +405,9 @@
return ''+ this.series.name +'
'+ Highcharts.dateFormat('%e. %b', this.x) +' : '+ this.y;
} else {
var xValue = typeof xValues[this.point.x] != 'undefined' ? xValues[this.point.x] : this.point.x;
+ if (globalGraphType === 'pie') {
+ return '' + this.series.name + '
' + xValue + ' : ' + this.point.y;
+ }
return '' + this.series.name + '
' + xValue + ' : ' + this.point.name;
}
}