score:1
Accepted answer
The plugin below should solve both of your problems:
(function(H) {
H.Tooltip.prototype.hide = function() {};
H.wrap(H.Tooltip.prototype, 'refresh', function(proceed, point, e) {
if (e && e.type !== 'mouseover' && e.type !== 'mousemove') {
this.updatePos = true;
proceed.call(this, point, e);
}
});
H.wrap(H.Tooltip.prototype, 'updatePosition', function(proceed, pos) {
if (this.updatePos) {
this.updatePos = false;
proceed.call(this, pos);
}
});
H.addEvent(H.Point.prototype, 'click', function(e) {
e.point.series.chart.tooltip.refresh(e.point, e);
});
}(Highcharts));
Live demo: https://jsfiddle.net/BlackLabel/3e4cvz2m/
Docs: https://www.highcharts.com/docs/extending-highcharts/extending-highcharts
Source: stackoverflow.com
Related Query
- How to create tooltip in highcharts map on click over a country...?
- How to edit tooltip in Highcharts C# code
- how to use highcharts tooltip formatter in python code
- How can I make React Native in Android aware of a click event in a tooltip in a Highcharts chart?
- How do I catch a click event on a polygon in HighCharts without having the tooltip popping up
- How to add table on click over each column in Highcharts Reactjs?
- How to create Highcharts tree map with 4 levels
- How to dynamically create timeline chart on click of x-range chart in highcharts angular
- How to create highcharts dynamically on click buttons
- How to create a column range chart in Highcharts using range and navigator functions?
- How to modify highcharts legend item click event?
- Highcharts - How to display legend symbol inside the tooltip
- HighCharts - How to create dynamic chart that exports EVERYTHING
- Highcharts - Keep tooltip showing on click
- Highcharts how to remove headers from tooltip
- Highcharts - How to hide series name and Y value in tooltip
- Highcharts : Chart with drilldown how to obtain click event of drill up button
- highcharts how to catch and insert logic in click reset zoom button event
- Highcharts - How to remove connecting line between fixed tooltip and point
- How to pass custom data into Highcharts graph click event
- Highcharts - How to remove tooltip arrows
- create a sticky tooltip for a point or a permanent label using HighCharts
- How to enable or disable a Highcharts tooltip when a button is clicked?
- How to modify Highcharts x-axis tooltip text
- How to create an inner circle pie chart in Highcharts
- Using PhantomJS to create HighCharts grahps server side for use in PDF creation (PHP) - results in exit code 11 from PHPs exec();
- How to hide one series data info in tooltip using highcharts
- How to plot line in highcharts on charts click event?
- Click event not fire in highcharts tooltip
- how to pass values to tooltip which not in x and y axis in highcharts
More Query from same tag
- Getting {% load chartit %} on my browser. Charts are not loading using chartit
- Highcharts : How do I keep the marker formatting and make the click event fire with a 5K+ point scatter plot?
- Adding highcharts to existing project got unknow problem
- Scientific notation to decimal notation not working in highcharts
- In angular, how can I use a component variable in scss file
- Working with JSONP Object in Highcharts
- Highcharts stop auto-numbering in X-Axis
- Different interval for HighCharts
- Facing issues with Highcarts.Chart
- Highcharts 'Cannot read property tooltipOptions of null'
- Highcharts real time chart with incoming Json data [FIXED[]
- Highcharts Issue - Labelling Y-Axis Based Series Data
- Highcharts export web war does not work on Weblogic server
- HIGHCHARTS: drilldown.js changes pie chart label color
- Second yAxis does not scale according to series in Highcharts
- Highcharts position dataLabels on hide/show event
- how to reset Highchart chart width in percentage on Button click
- controlling the resolution (dpi) of an exported JPG from highcharts exporting-server
- Highstock performance issue
- Column chart: Set background of exactly one column
- print multiple highcharts chart
- How to display points by day and not time?
- Highchart, One column as background for another
- I'm trying to create a bar graph with Highcharts JS, but the bars won't draw on the graph?
- Dynamically change datetime format of xAxis Tick Label in highchart
- javascript display multiple Highcharts using single function
- Pie chart with laravel and js
- Jquery, highchart: render plot on button click, roll backs
- Access another series row's data on Highchart dataLabels
- Highcharts/highstocks Javascript from CSV file