score:10
Accepted answer
you can disable tooltip for specific points using tooltip.formatter
. you will need to add some identifying attribute to the points that are not going to have a tooltip, and then check for that in your tooltip.formatter
function.
for example, you could set your data
like this (see first point):
data: [{x:1, y:6, z:5, notooltip: true}, [8, 7, 9], [1, 3, 4], [4, 6, 8], [5, 7, 7]]
then in your tooltip.formatter
you can evaluate like this:
tooltip: {
formatter: function() {
// if the point is going to have a tooltip
if(!this.point.notooltip) {
// mimic default tooltip contents
return '● '+this.series.name+
'<br/>x: <b>'+this.point.x+
'</b><br/>y: <b>'+this.point.y+
'</b><br/>z: <b>'+this.point.z+
'</b><br/>';
}
// if tooltip is disabled
return false;
}
}
see this jsfiddle demonstration (point that is disabled is at coordinates [1,1,0] in bottom left).
Source: stackoverflow.com
Related Query
- Disable tooltip for one point?
- Highstock disable tooltip for one series
- highcharts customize tooltip for a single point
- create a sticky tooltip for a point or a permanent label using HighCharts
- Highstock shared tooltip multiple series - show data for line when not on point
- Highcharts Modify Tooltip for One Series
- Disable line from tooltip to point location on the chart
- Extra data in point object isn't available for tooltip
- Disable tooltip only for months and days in Highcharts
- highcharts line for one point serie
- Changing backgroundcolor of tooltip for a specific data point in Highcharts
- Highcharts: disable allowPointSelect for only one pie slice
- Showing only one tooltip for all. Highstock highcharts
- show tooltip for each point of highcharts network graph in Angular
- Highstock : Shared tooltip except for one series
- how to give different names on tooltip for one series in highcharts R
- Can I easily modify tooltip for certain point and else use default for timeseries data?
- Highcharts; disabling the tooltip for a single point renders a random little box
- Highcharts. Explicit colour for one point in HeatMap
- How to highlight and show tooltip for correct (left / right) step point instead of the closest point
- How to set tooltip background as point color for split chart in Highcharts?
- Highcharts datalables enabled for one series and one point on the chart via chart function
- High charts click on one data point the other data points should disable
- highstock. Can I add one line of tooltip when the point is in the area of plotbands?
- Showing all values on one point on x axis and changing range for rCharts highcharts
- How to include strings in series data to pull for tooltip point formatting?
- Make Highcharts tooltip show info for closest point to the left (i.e. not change at midpoint)
- Disable highcharts tooltip on certain lines, leave it enabled on others?
- Disable tooltip on certain points in Highcharts
- Display tooltip for invisible series in Highcharts
More Query from same tag
- Multiple pie charts in 1 graph with split tooltip Highcharts.js
- Highcharts multiple legends
- Highcharts getSVG plotOptions series.lineWidth not working
- How to remove weekend datetime gaps from x-axis of a financial chart?
- How to shrink space between numbers on y-axis in HighCharts
- highcharts. set full height of column/bar background color
- Width of embedded HighChart within jQuery dialog only 100% after resizing window screen
- Highcharts yAxis.max manage tick intervals dynamically
- Change Colors and Using Setting Up an API
- Highchart and DWR Comet
- Don't display not present date values
- Converting double?[ ] to object[ ] in c#
- Highlight Single Bar/Column in Highcharts on load
- Highcharts: Chart does not resize properly by making the screen smaller
- Bug in Highcharts after exiting the full screen mode
- Can you create a phase change line in highcharts
- How to convert powerpoint chart for web use?
- Highcharts.js: how can stacked area graph animations be smooth?
- Creating graph with x-axis only using D3
- Highcharts data label getting cut off
- How to get Node Coordinates Data in Sankey Graph
- Implement multiple AJAX-requested series via HighCharts
- Coloring a country in lat-long highmap
- Uncaught SyntaxError: Unexpected token ILLEGAL in javascript
- Highstock chart doesn't show correct width in Phonegap app
- Dragging line charts horizontally to show past/future data in Highcharts
- What's the matter with the STEP parameter in my Highcharts graph?
- Highcharter R custom button for log axis
- HighCharts long title text overlapping on some elements
- Load json-data into Highchart