score:1
Accepted answer
You can wrap zIndexSetter
method to call it only if the element is not a path:
(function(H) {
H.wrap(H.SVGElement.prototype, 'zIndexSetter', function(proceed, value, key, el) {
if (!el || (el && el.tagName !== 'path')) {
return proceed.apply(this, Array.prototype.slice.call(arguments, 1));
}
});
}(Highcharts));
Live demo: https://jsfiddle.net/BlackLabel/31a0x4sL/
Source: stackoverflow.com
Related Query
- How to stop Highmaps on mouse hover to change SVG path orders
- Stop HighCharts change transparency of another series on hover of one series
- Highcharts, how to change hover bg color for series with multiple columns (categories)
- How do i add mouse wheel code in Angular2 highcharts in typescript
- How to have a border around highlighted countries but no change in fill color in a highmaps map?
- how to change bar hover color of highchart dynamically?
- How to change the chart title dynamically on tooltip hover in the points Highcharts.. React JS
- How to make cursor pointer on mouse hover only on a particular PieChart slice?
- How to dynamically change mouse event functions in Highchart?
- Highmaps hover effect/mouseout color change
- Highcharts Highmaps How to change projection with hc-transform
- Highcharts Highmaps How to change value for color axis in map bubble
- How to change the marker style on hover in HighCharts
- Highmaps svg path issue - Data not flowing into certain counties on US map
- Highchart general drawing svg label zoom-in on mouse hover
- How to change code in "Pie Chart" in HighCharts
- How to enable mouse hover on subtitle or title of pie chart using highchart
- How to change circle to rectangle when mouse hovers on the heat map charts
- Tooltip: how do I retrieve the position of the point when the mouse hover it?
- How do you change the colour of each category within a highcharts column chart?
- How can I change the colors of my highcharts piechart?
- Highstocks - How to change the default Zoom
- How to disable legend click to stop pie slice from disappearing in Highcharts?
- How to change the font family of Highchart to Bootstrap css default font family
- How to change the text color in Highcharts
- Drilldown in highmaps - how to remove a series
- How do I dynamically change a data point in Highcharts using JavaScript
- highcharts: stop chart from trapping mouse events, or capture mouse click on the ENTIRE chart
- Wkhtmltopdf fails to printing SVG path (highchart)
- How can I change the unit at y axis dynamically at Highcharts?
More Query from same tag
- Custom data label for a single point in OHLC candlestick in Highcharts
- Highcharts- how to set yAxis to the closest or exact value in the series data
- Highcharts downsampling - CSV
- Highcharts bar chart configuration to increase height and round edges
- Make chart.renderer.path as plotline Highcharts
- Cannot Run HighChart GWT Demo Example - Area Range
- High and low line on candlestick chart
- Update datalabel position after Heatmap resize with Highcharts
- How to add Highcharts series automatically with a 2D-array?
- How to a show a block between two points in highchart
- json_encode and highcharts
- Highchart and DWR Comet
- HighCharts stacked grouped chart - with grouped caregories plugin
- Event afterSetExtremes is firing repeatedly with Highstock 1.3.0
- Highcharts/stock xAxis display only year
- HighStock Depthchart is updating the data strangely
- Highcharts Display Xaxis plot line
- Highchart tooltip show nearest point
- How to add horizontal scroll in Organization chart highcharts?
- highcharts polar chart with gradient color fills
- How to reformat a HighChart series to for CSV export
- Display Date and time on highcharts
- How to create 2 axis and 2 yaxis in highchart
- HighCharts: draw multiple segments in a single serie?
- highcharts - error when updating a series to have less categories than previously
- Highcharts Angular - Sunburst implementation
- using MapBubble in country Chart in Highcharts
- issue on Adding Multi Text To Chart in Highcharts
- What is the highcharts-more file needed for?
- How to add % symbol to Y axis values in HighChart graph?