score:2
Accepted answer
it worked for me when i changed:
function mouseovercallback(event, series) {
series.graph.attr('stroke', 'steelblue')
series.graph.tofront()
}
to
function mouseovercallback(event, series) {
series.graph.attr('stroke', 'steelblue')
series.group.tofront();
}
score:1
you could try simply updating the zindex
of the series upon mouseover
and mouseout
.
for example (jsfiddle):
plotoptions: {
series: {
stickytracking: false,
events: {
mouseover: function (e) {
e.target.update({ zindex: 1000 });
mouseovercallback(e, this)
},
mouseout: function (e) {
e.target.update({ zindex: undefined });
mouseoutcallback(e, this)
}
}
}
}
Source: stackoverflow.com
Related Query
- Bringing a time series to the front in Highcharts
- How can i hide all the Series in highcharts at a time
- HighCharts Hide Series Name from the Legend
- Hiding a Highcharts series without using the legend
- Weird character in front of Highcharts tooltip series names
- Customizing the colors of individual series in HighCharts
- How To Use Epoch Time With Highcharts Series Data?
- Highcharts - How to set custom colors for the series
- Add a gap between the second and third series in a Highcharts column plot with four series displayed
- Show specific series values in the stack label using highcharts
- highcharts link series such that turn one off turns off the other
- Highcharts - specifying order of stacked time series
- How can I delete all of the points from a highcharts series
- Highcharts - Scatter chart with a line connecting the dots in the series
- Sort the series data for every X-Axis in Highcharts
- How do I style the series labels on a Highcharts pie chart?
- How to remove the halo/glow around a marker upon hovering a series in Highcharts
- Highcharts add tooltip that has a small arrow pointing toward the series
- How do I hide a Highcharts series from the chart, but always show it in the tooltip?
- Gauge Series of Highcharts with React not the Solid Gauge but Gauge Series
- Highcharts show the same yAxis start and end value with multiple data series
- HighCharts Time series missing points?
- Highcharts - how to create multiple y axis and group the data series
- how to display 2 same highcharts without duplicate the code
- Highcharts - Series tooltip doesn't work when plotting lines that zigzag on the x axis
- Is there a way to change the display value in series using highcharts
- change the categories and series in highcharts by select button?
- How to change the color of highcharts series graph to black & white during downloading it as an image?
- How to keep the highcharts legend "on" while hiding the series
- rCharts: Change the individual point colors of a time series plot (Highcharts)
More Query from same tag
- Hide the highcharts tracker from image
- Highcharts numberFormat returns minus zero
- Chart with Multiple CandleStick. HighStock/HighCharts
- Highcharts X-Axis value not completely displayed
- Highcharts series gap auto zipping
- Difference between ChartModule & HighchartsChartModule in Angular-HighCharts?
- Highcharts gauges - getJSON
- Use single color for all series in the same chart
- how to display dynamically chart in each cell?
- Highcharts error #13 and AngularJs
- I cannot pass in a variable into the highcharts function using jquery and pug.
- HighCharts - Remove space between series on stacked bar
- How to change highcharts bars width individually
- highcharts remove gap (column) with zero value
- Tooltip for line segments instead of points in highcharts
- Highcharts - Stack Graph Display Average of all values
- HighChart pointPlacement on y-axis
- (angular2-highcharts) ERROR in Error encountered resolving symbol values statically
- HIghmap colorAxis filter dynamic binding
- Populating Highcharts tooltip with data from other charts
- Highcharts line color based on other data than value
- Selecting relational highchart SVG images with Selenium
- HighCharts: Positioning label on chart agnostic of legend size
- How to call Objective-C function from javascript in iOS
- How we can show scrollbar if max index exceeded in highcharts timeline?
- How to create a legend for bar colors in a Highcharts bar chart
- JavaScript error when using Highcharts
- How would I convert this array to usable javascript array?
- How to connect/sync xAxis crosshairs between multiple HighStocks charts
- dynamically change fontWeight on a legend item Highcharts