score:2
You can control the format of the tooltip using the formatter function in the tooltip block. For example:
tooltip: {
formatter: function () {
var s = '<b>' + this.x + '</b>';
$.each(this.points, function (i, point) {
s += '<br/>' + point.series.name + ': ' + point.y;
});
return s;
},
shared: true
},
This formats the tooltip using a header of the x value, and lists series name and y for each series. shared: true means the tooltip is shared between both series, appearing the same no matter which series you hover over.
There is plenty of documentation on the tooltips along with some examples here: http://api.highcharts.com/highcharts#tooltip.formatter
and also here:
Source: stackoverflow.com
Related Articles
- how to have customized tooltip,when plot has two series
- how to plot multiple time series in the same graph with customized x axis
- How to have multiple highcharts with different series data in vuejs without repeating code
- Add a gap between the second and third series in a Highcharts column plot with four series displayed
- Highcharts shared tooltip for line series and scatter plot not working
- Highcharts: Is it possible to have a single series exist in multiple stacks in a grouping
- highcharts - error when updating a series to have less categories than previously
- Highcharts - How to make a scatter plot with multiple series from HTML table
- rCharts: Change the individual point colors of a time series plot (Highcharts)
- Highcharts, have all but first series turned off on chart load
- Plot Highchart multiple series line chart using JSON data
- How to create pie chart with only 1 series data and have background be a circle
- Have an issue with JavaScript, AJAX code displaying data
- adding a simple feature to a highcharts.js time series plot
- Turn series and plot bands on/off using API
- Shiny: Add new series to Highcharts plot on button click
- How to set the padding and placement if we have more than 16 data in the series
- Highcharts Plot two datetime series on top of each other
- Highcharts - Add Axys properties when series are added later to Plot
- Strange character in the Highstock source code
- ignoreHiddenSeries is not hiding values on X-axis if displayed series have null data
- How to add a vertical plot line in multiple line series and show the tooltip on Plot line in highchart
- Highcharts series visibility with csv data source
- How to plot line chart with series data in highcharts?
- How to plot a highstock single line series graph from ajax data
- Starting Time Series Highcharts Plot at specific date/time
- Updating data points that have changed on invisble HighCharts series issue
- Is it possible to have different colored graphs in a single series in HighCharts?
- Highcharts: Selecting single series from plot with multiple series
- Is it possible to plot time series on top of a heat map in highcharts?
- How to view and or read contents of a JSON object in C#?
- Generating highcharts issues in dual axis column chart
- Set HighCharts data from JSON string with setData() function
- Highchart - Redraw Chart after Window is resized
- Highcharts: Add point without connecting series
- Highstock Stockchart with custom color for single grouped column
- fix a number of labeles on xAxis highcharts
- Can we stack a 2 columns in a single column in basic column Highchart and let the other columns let it be?
- JIRA Gadget Plugin with HighCharts
- Highchart.js and AngularJS after navigation some chart does not load
- How to remove fine white line between halo and Highcharts pie chart
- Highcharts: Dual axis line and column with multiple series
- disable hover on special slice of pie chart
- Highstock - Minimal Zoom
- Tool tip formatter for donut highcharts
- Is it possible to hide the navigator in highcharts at runtime?
- HighCharts with CodeIgniter results nothing for MySQL fetched data
- How to make an irregularly scaled x-Axis and plot to both sides of it using Highcharts/Highstock
- How to get multiple data series into Highcharts
- Highcharts: adding symbol to inverted columnrange chart series