Settings and activity
1 result found
-
12 votes
See http://jsfiddle.net/highcharts/mAJtj/ for a possible solution using data labels.
An error occurred while saving the comment
1 result found
See http://jsfiddle.net/highcharts/mAJtj/ for a possible solution using data labels.
Better implementation:
formatter: function() {
if (this.x == this.series.data[this.series.data.length-1].x) {
return this.y;
} else {
return null;
}