score:1
Accepted answer
It is probably a bug in timeline series. You can report it here: https://github.com/highcharts/highcharts/issues
As a workaround update userDLOptions
instead of dataLabels
.
point: {
events: {
click: function() {
this.update({
color: 'red',
userDLOptions: {
enabled: true,
useHTML: true,
formatter: function() {
return 'sudheer';
}
}
});
}
}
}
Live demo: https://jsfiddle.net/BlackLabel/sf95dy2a/
Source: stackoverflow.com
Related Query
- Update datalabel on click of a point on the series of a highcharts timeline chart
- Click a point on a highcharts graph from outside of the chart
- I want to update my series dynamically on highcharts with a click & also bring it to the original way by clicking on an other button (#previous)
- Highcharts datalables enabled for one series and one point on the chart via chart function
- Highcharts => Getting the id of a point when clicking on a line chart
- Highcharts chart click event fired on click of the reset zoom button (bug?)
- Highcharts - Scatter chart with a line connecting the dots in the series
- How to use add series and update methods in the high chart wrapper for angular?
- Highcharts - Rotate pie chart aligning the clicked section to a fixed point (180°)
- Highcharts : How do I keep the marker formatting and make the click event fire with a 5K+ point scatter plot?
- Highcharts Bubble Chart - How to get the size of the point
- Highcharts - How can I get the nearest point on click event
- change datalabels color in a HighCharts chart when hovering without updating the series
- Highcharts series doesnt show data and render the chart
- Update all Highcharts chart series synchronously
- How to change the background series colour of Highcharts Radar chart
- Highcharts & Angularjs: update chart from $broadcast in the main controller doesn't update the chart like a $watch would in the chart's controller
- I am using click event to trigger a new page to generate the drill down data from highcharts however the entire chart is being generated
- Highcharts js: get errors if there is a big point in a 3d series chart
- Highcharts ( stockchart series line is not connecting to the last point
- Cannot update Highcharts series in click event with highcharts-ng
- Highcharts Column Series Point Object Click Function
- Add new series to the top of a highcharts stacked column chart
- Highcharts dynamic set category update the chart but shows only points but not lines
- How can I reverse the series order of a pyramid chart in Highcharts
- Highcharts - Update a series point [x,y] values?
- Highcharts Update Grouped Series Data Point Colors
- HighCharts basic bar chart provide the xAxis categories with Series
- Highcharts column chart returning incorrect series index on click when using shared tooltip
- Update Series Array on HighChart after editing the chart
More Query from same tag
- $(document).ready() equivalent for rails 3? Need highcharts to load correctly
- Highcharts overwrite default DataLabel
- Highcharts - Different Marker for Each Point of Area Plot
- Highcharts Synchronisation of multiple charts with different sizes
- Angular JSON from API to an Array of value
- Highcharts format labels on grouped stacked bar diagram with $ k, M for currency and 'hrs' for time
- High Charts - Split color of bar chart
- Open Highcharts in modal window
- Highchart custom styling
- Drag multiple points at one time in highcharts
- Highchart : Unable to populate data from JSON
- Bar value depend on other bar value in HighChart
- Cannot add multi series to Highstock but same thing works for Highcharts
- How to show the path that I have traversed in highcharts drilldown chart?
- Highcharts skipping second x-axis label
- Using Highcharts library in swing application
- Not well-ordered X Axis values
- Is it possible to make a table with y axis labels of Highcharts bar chart?
- how can I use highcharts no-data-to-display module as es6-module?
- How to use HighStock's tickPositioner to set tick at end of month?
- Vertical areas along with line on the chart - is that possible
- highcharts date not displayed properly on x axis
- Highcharts too slow when plotting 4000 bars (rCharts)
- Highcharts - show blank X Axis
- start at the same hour every day
- Prevent Highcharts to redraw Axis' scale
- Loading Highcharts via shim using RequireJS and maintaining jQuery dependency
- Highcharts Legend error: "typeError: a.legendItem.bBox is undefined"
- Change SVG stroke options in Highcharts
- redraw funnel chart in highchart when a segment is removed?