We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 8bfac5f + e00f79e commit 79988a0Copy full SHA for 79988a0
jquery.highchartTable.js
@@ -366,7 +366,8 @@
366
if ($table.data('graph-xaxis-type') == 'datetime') {
367
return '<b>'+ this.series.name +'</b><br/>'+ Highcharts.dateFormat('%e. %b', this.x) +' : '+ this.y;
368
} else {
369
- return '<strong>' + this.series.name + '</strong><br />' + xValues[this.point.x] + ' : ' + this.point.name;
+ var xValue = typeof xValues[this.point.x] != 'undefined' ? xValues[this.point.x] : this.point.x;
370
+ return '<strong>' + this.series.name + '</strong><br />' + xValue + ' : ' + this.point.name;
371
}
372
373
},
0 commit comments