I have a highcharts table with two data series that use named values. In my tooltips for one series, I want to reference a data point from the series. So the solution in thi
Here's an example. The fiddle example is here:
tooltip: { formatter: function () { var s = '' + Highcharts.dateFormat('%A, %b %e, %Y', this.x) + ''; $.each(this.points, function () { s += '1 USD = ' + this.y + ' EUR'; }); return s; } },