score:1
Accepted answer
You can achieve it using tooltip.formatter
and additional property saved in the point object. Check demo and code posted below.
Code:
tooltip: {
formatter: function() {
if (this.point.tooltipInfo) {
return 'Something: <br>- ' + this.point.tooltipInfo.join('<br>- ');
}
return this.y;
}
},
drilldown: {
series: [{
name: "Category 1",
id: "cat1",
data: [{
name: "stuff 1",
y: 4,
tooltipInfo: ['aaa', 'bbb', 'ccc', 'ddd']
},
{
name: "stuff 2",
y: 6,
tooltipInfo: ['aaa', 'bbb', 'ccc', 'ddd', 'eee', 'fff']
},
[
"stuff 3",
5
],
[
"stuff 4",
6
]
]
}]
}
Demo:
API reference:
Source: stackoverflow.com
Related Query
- Is there a way to add a custom tooltip to the second level columns of the drilldown on highcharts?
- (jQuery Highchart) Is there any way to put extra custom data inside Tooltip Box?
- Is there a way to scale the custom marker of a high charts scatter chart?
- Is there a way to to always show the data along with tooltip data rather on on hover only in highcharts-stockchart?
- Is there a way to copy the contents of a HighCharts tooltip to the clipboard?
- Is there a way to disable the Title and Subtitle in Highcharts?
- Add a gap between the second and third series in a Highcharts column plot with four series displayed
- How do I add a tooltip to the x-axis labels in highcharts?
- Highcharts add tooltip that has a small arrow pointing toward the series
- Is there a way to move data labels to the side of a stacked column in HighCharts?
- Is there a way how to dynamically create a plotline in highchart when the value is lower than previous one?
- Is there a way to cap Highchart's Gauge at the max
- Is there a way to load data into Highstock without the use of PHP?
- Add data dynamically to the top level in highcharts when drilling up
- Is there a way to change the display value in series using highcharts
- Is there a way to get the mouse coordinates with respect to page on mouseOver of a point in Highcharts?
- Is there some way to only show the PNG option in exporting.csv?
- Remove the second tooltip in Tree map using Highcharts
- In Highcharts drilldown charts, Custom Formatting of X-Axis label displays the label with underline even in the last level
- Add a custom text tooltip that differs from point to point in Highcharts
- How to add a second tooltip to highcharts
- How to have first level as column chart and second level as Fixed placement columns in drill down highcharts
- Is there a way to show overlapping points of the same serie in highchart?
- Is there a way to show overlapping points of the same serie in highchart?
- Is there a way to fill different colors up to the desired point in Highcharts gauge graph?
- How to add custom CSS to the highcharts.js anchor <a> tags with links
- Is there a way to use some of the highcharts-stocktools-toolbar items?
- Is there any way to define the indivdual dataLabels connector width in a pie chart
- Is there is a way to force highcharts to space columns equally spaces on datetime x-axis
- Add custom data on tooltip of Highcharts donut graph
More Query from same tag
- Using HighCharts with LARAVEL
- How to pass laravel/PHP function to JS
- How to use .top() method in a crossfilter group with nested values
- Drawing 3D bar charts using Highcharts through JS
- Highcharts: legend of stacked chart
- How to Control Highchart.js Dom Elements Through CSS Rules
- HighStock hiding specific series and axes based on checkboxes
- How to convert a JavaScript object to array
- Showing user the script is loading
- Show Column and line chart together in drill down using highcharts
- highcharts: get yaxis title?
- Highcharts: Heatmap using CSV
- Set background color to HighChart xAxis labels
- Remove 'low' label for Highcharts Range chart
- How to add a plotline to a bar chart in Highcharts?
- rangeSelector: change date beyond zoomed time range
- Highcharts heat map not displaying properly
- Change shape color in Highmaps programmatically
- Highcharts error #13 unless I run under IE compatibility view?
- How to use highcharts bubble to display more than 3 columns data?
- Highchart- Using PHP, MYSQL and jQuery.get to parse data
- Highstock gapsize is causing line rendering issue
- How do i combine a horizontal bar graph with a line chart?
- Html5 line chart with a different color when out of area range
- Highcharts query
- Cannot plot scatter and columnrange graph with multiple y-axis
- Highcharts columnrange remove spacing from data in other categories
- Format tooltip according to series in Highcharts
- Import error, can't find file: highcharts/histogram-bellcurve
- How to remove the white outline/border on Highcharts 3D on setData?