score:1
Accepted answer
Use a formatter function for tooltip and return false
if there is less than two points. Example:
tooltip: {
shared: true,
formatter: function(tooltip) {
if (this.points.length < 2) {
return false;
}
return tooltip.defaultFormatter.call(this, tooltip);
}
}
Live demo: http://jsfiddle.net/BlackLabel/zrse9cdj/
API Reference: https://api.highcharts.com/highcharts/tooltip.formatter
Source: stackoverflow.com
Related Articles
- Tooltip for series with different time intervals
- Highcharts - selection error with live data and different time intervals
- Highcharts tooltip format different with series
- How to have multiple highcharts with different series data in vuejs without repeating code
- Series with different time ranges in Highcharts
- show two different series with different start intervals with the same xAxis highcharts
- Plotting time series with different scales with Hichcharts
- highcharts: shared tooltip not working for series with diffrent intervals
- How To Use Epoch Time With Highcharts Series Data?
- Highchart data series filled with different colors
- Highcharter plotBands, plotLines with time series data
- Display multiple time series with rCharts hPlot
- time data with irregular intervals in HighChart
- how to assign date time to highchart with intervals and date start
- High chart - Column Range Chart with Time range. How to get tooltip as Start and End time
- Can I sychronize two highcharts series with different years (leap year)
- Highcharts shared tooltip between charts with multiple series and shared tooltip
- Highcharts: make y-axis extremes the same for two data series with different units
- Highcharts Time Data With Irregular Intervals In Wrong Order
- Setting additional point attributes in HighStock time series with large data sets
- Highstock Time series with uneven data set distrubition
- Highchart Polar chart - 4 nested circle with different series
- How to create a highchart with 3 different series categories name
- Highcharts: Series with plotlines. Show only one series at a time
- Highcharts datetime axis overlap with a long time series
- Highcharts synchronize tooltip on multiple charts with multiple series
- How to display line break for irregular time series with highcharts
- how to plot multiple time series in the same graph with customized x axis
- Multiple data series and multiple data tooltip with HighMaps
- Use different markers in the same series of an irregular time highchart
- Display datetime including milliseconds
- Load HighCharts Chart/Data on Form Submit with jQuery
- Ability to show labels of checked serie after rendering highcharts
- Highcharts - degraded tooltip rendering performance
- Highcharts - Stack Graph Display Average of all values
- Javascript Highcharts rename or remove series label in chart
- How to create semi pie progress with highcharts?
- Zoom In & Zoom Out buttons - highcharts
- Wrong start date in irregular intervals chart
- Clickable link in tooltip of Highcharts
- Clear chart by click in highcharts
- rCharts/Highcharts reversedStacks not working in R
- Why does this Highcharts graph only show tooltip for the first and last nodes?
- 'G_vmlCanvasManager' is undefined
- Highcharts Gantt - Show Tooltip on Dependency Path Hover
- Dynamically changing Highcharts Theme through Jquery code not working
- Highcharts static line with background color below it
- Get data to NodeRed from Homepage (HighCharts)
- How to display custom text for a specific category in pie chart tool tip
- Is it possible to change background color of highcharts?