score:2
Accepted answer
You can use tooltip formatter and then find points.
tooltip: {
formatter: function () {
var indexS = this.series.index,
indexP = this.point.x,
series = this.series.chart.series,
out = 'y1:' + this.y + '<br/>';
switch (indexS) {
case 0:
out += 'y2: ' + series[1].data[indexP].y;
break;
case 1:
out += 'y2: ' +series[0].data[indexP].y;
break;
case 2:
out += 'y2: ' +series[3].data[indexP].y;
break;
case 3:
out += 'y2: ' + series[2].data[indexP].y;
break;
}
return out;
}
},
Source: stackoverflow.com
Related Articles
- Tooltip for whole stack in grouped stacked Highcharts diagram
- Highcharts format labels on grouped stacked bar diagram with $ k, M for currency and 'hrs' for time
- add total count inside stack labels grouped stacked column chart- Highcharts
- set color of grouped stacked column in highcharts
- Overlapping and rounded stack in stacked column graph in Highcharts
- Make stack label disabled for a column in stacked column graph in Highcharts
- How to edit tooltip in Highcharts C# code
- how to use highcharts tooltip formatter in python code
- Highcharts stacked bar tooltip
- Show Data For Grouped Series in ToolTip Highcharts
- Give different color to each stack in stacked bar in Highcharts
- Highcharts position tooltip at the middle of stacked bar
- Highcharts stacked column: show total when a stack is hidden
- Highcharts tooltip bug with stacked column chart
- Highcharts stacked and grouped columns: Share label across all stacks
- Highcharts Grouped stack x.axis name + category name
- Highcharts stacked area - update tooltip only after exact area mouse over
- Add a line on each bar for stacked and grouped column in HighCharts
- Highchart | Grouped stacked bar chart | Multiple stack labels
- Type Labels on Stacked and grouped column - Highcharts
- Shared tooltip positioner point.plotY is always 0 in Highcharts Stacked columns
- HighCharts stacked grouped chart - with grouped caregories plugin
- Show total for whole group in Highcharts 'stacked & grouped column' layout
- Stacked grouped histogram HighCharts graphs with dynamic data using ASP.NET MVC3?
- Highcharts sizing bars in a Grouped and stacked barcharts
- Disable highcharts tooltip on certain lines, leave it enabled on others?
- Customize tooltip and format the number to 2 decimal places of highcharts
- Highcharts tooltip overflow is hidden
- customize highcharts tooltip to show datetime
- highcharts pass multiple values to tooltip
- Highlight slice of a pie chart in highcarts
- Generate highchart instance on floating div from mouseOver on axis label or from series point
- Bars does not show up when loading JSON encoded data from PHP in Highcharts
- Getting an image (eg svg) created on the client in javascript, back to the server side for c#
- Highcharts: picking points in one chart and have the same points highlight in other charts
- Creating an Array of Objects from an Array
- How can I add different icons in the legend
- Highcharts bar chart wont animate
- Colors doesn't change using Highcharts.setOptions
- Remove DateTime from Highchart's x-axis
- Highcharts tooltip for all series
- changing intervals in X and Y axis in high chart (line chart)
- Negative bar chart of highcharts in chartjs
- highchart bargraph rectangles remove stroke
- How center the value 0[threshold], the line which separates positive and negative value?
- highstocks, how can I bring values that I will only use on the 'click' option?
- Format data to parse to a highcharts pie chart
- Webpack Highcharts Plugin IIFE
- Don't connect points with value 0 in highcharts
- Highcharts : How to flag the local maxima on a dynamic graph drawn using HighChart