score:1
Accepted answer
The problem is related with this issue: https://github.com/highcharts/highcharts/issues/11824
And it is caused by calling e.preventDefault
in onContainerMouseDown
method: https://github.com/highcharts/highcharts/blob/61419f1d60b0e0fb069569e23e609e12b1943ea5/ts/Core/Pointer.ts#L1232
As a workaround add the below plugin:
(function(H) {
H.wrap(H.Pointer.prototype, 'onContainerMouseDown', function(proceed) {
proceed.apply(this, Array.prototype.slice.call(arguments, 1));
document.getElementById("wrapper").focus();
});
}(Highcharts));
Live demo: http://jsfiddle.net/BlackLabel/L08nagq4/
Docs: https://www.highcharts.com/docs/extending-highcharts/extending-highcharts
Source: stackoverflow.com
Related Query
- Focus event does not bubble up to the parent in Highcharts
- How to modify the code so that Highcharts graph does not cover fixed navigation bar at the top of the page?
- Charts rendered using highcharts in angular2 do not take the height of the parent
- Highcharts oncahnge event It works on the first try but not on the second try
- highcharts from HTML table does not getting the x axis key
- HIghcharts - chart width not the size of the parent container
- How to make a HighCharts drilldown column/bar chart that does not hide the non-drilldown categories
- Highcharts Highmaps the data does not match with polygons correctly
- Highcharts - Bubble losing focus without exiting the chart
- Highcharts userOptions does not update after changing the chart title
- Highcharts When printing the chart does not fit the page
- Why does the smallest bubble size of this Highcharts jsFiddle example seem incorrect and how do I fix it?
- How can I fix the error #17 "The requested series type does not exist" error when trying to display a highcharts graph in Vue.js?
- Highcharts setExtremes() does not display the correct interval for one day
- Highcharts code with same set of code/data works in PHP but does not work in JSfiddle
- Highcharts chart does not show the value of y
- The graph is not equal on the basis of the addition code in Highcharts
- What format does the highcharts js library accept for dates?
- Highcharts area fillOpacity do not work when changing the color
- Highcharts Error #16: charts not showing on the same page
- Highcharts does not resize charts inside tabs
- Highcharts: Chart does not resize properly by making the screen smaller
- How to export the whole page or html content with Highcharts not just the chart?
- Highcharts chart click event fired on click of the reset zoom button (bug?)
- Highcharts does not work with wicked_pdf
- Why does HighCharts reverse the order of my series?
- Highcharts - show every month on datetime x-axis when the parent container is small
- Why are the labels for my opposite yaxis in Highcharts not showing up?
- Can I with highcharts column stacking on hover not highlighting the whole serie
- Panning in Highcharts will not allow to go back to the max of the xAxis
More Query from same tag
- Date changes after going through $filter()
- HighCharts and Javascript to pass data as array
- Highcharts Column Series: Centering categorized x-axis labels
- Highcharts - Remove first marker from Area chart in every series
- How to hide only the columns of this group when hovering over a group column in highcharts?
- JSON parse or removing double quotation in data getting form model or database in rails
- How to hide one series data info in tooltip using highcharts
- Decimal values for yAxis categories in Highcharts
- Highcharts afterAnimate in combination with xAxis max
- Behavior of log axis
- Highcharts using value not an array Ajax
- Bar chart not drawn when chart renders
- Increase the size of one country on a HighCharts map?
- Getting error while using highcharts in Angular 7
- Highcharts problems with animation of column chart
- Highcharts - change background color along specific date range
- Set ID to div and show the div after clicking a button using jquery
- File loading a Csv file into highcharts
- How do I set the margin to bottom of a chart in HighCharts to zero?
- disabled zooming when scrolling the mouse in the tooltip of scatter plot highcharts
- Angular 7 High Charts Stock Chart Datetime X Axis tooltip formatting independently of other tooltips
- How To Merge Highcharts Legends With All Unique Entries
- Highcharts datetime column chart - interval data
- Error Bars in High Charts: What to do when the x axis is divided into categories?
- Export Highcharts DataTable to PDF - Angular
- Highcharts with angularjs: smooth transition of bars when updating values
- this.point.properties undefined highmaps
- How to add image in Highcharts Title and subtitle
- Multiple Pie Charts Of Variable Data With Single Legend Item Click
- Capturing touch events (touchstart and touchmove) in addition to mousemove for synchronising highcharts