score:1
Series bubble events give you possibility to change format at dataLabels. You can update them with the point events state, e.g. mouseover, and add a condition for more control.
plotOptions: {
series: {
dataLabels: {
enabled: true,
},
point: {
events: {
mouseOver() {
if (this.x >= 80) {
console.log(this.series.dataLabels);
this.series.update({
dataLabels: {
format: 'Very long text!'
}
})
} else {
this.series.update({
dataLabels: {
format: 'text!'
}
})
}
}
}
}
},
},
Source: stackoverflow.com
Related Articles
- R highcharter editing dataLabels format
- How to Format Highcharts dataLabels Decimal Points
- How to set dataLabel Format and axis label angle in R highcharter package
- Adding comma format to Highcharter tooltips
- Highcharter format number in tooltip
- Strange character in the Highstock source code
- DataLabels in R highcharter cannot be seen after print as png or jpg
- Highcharts bar format datalabels to percent and add text
- Highchart - Editing the tooltip date format content on hover
- date format after using `list_parse` with highcharter
- Highcharts - How to set datalabels format programmatically in Combo chart
- How to add the years in xAxis date format while exporting? Also how to add the data source during the exporting?
- Highcharts: Format all numbers with comma?
- Customize tooltip and format the number to 2 decimal places of highcharts
- What format does the highcharts js library accept for dates?
- Format Highcharts y-axis labels
- Format tooltip numbers in Highcharts
- Is it possible to position Highcharts dataLabels depending on the value?
- R Highcharter Sankey nodes column property trouble
- HighCharts show datetime format on xAxis
- r - How to set xlim and ylim range in a highcharter plot?
- How do I format x-axis label in highcharts
- Optimize JavaScript DrillDown code
- json date format to Highcharts date format
- Highcharts - HTML tooltip & datalabels render issue
- Highcharts pie dataLabels inside and outside
- What type of date/time format is this?
- pie chart highcharter R
- DB Array to expected javascript format
- Customize bubble map with highcharter
- Set minPointLength for one of two series in highchart
- Storing mysqli_query into multidimensional php array and utilizing that array as input to highcharts
- jsx highcharts performance
- Arrays in highcharts
- Set plot height and allow the rest of the chart to resize
- Highcharts - stop Y axis value change on redraw
- How to hide a specific x-axis label programmatically?
- The data is not rendered in highcharts
- Sending data to HighCharts
- How to remove decimal values on x-axis of bar chart : Highcharts
- Using HighCharts with Backbone
- Is it possible to have two Y Axis in a highstock chart from highcharts one on the left and another on the right?
- Highcharts | Custom plotOptions->series->dataLabels
- Highcharts navigation button and fullscreen button in bootstrap
- Highcharts point click event returns "hover" state instead of "select" state
- Is it possible to use data grouping in Highcharts without Highstocks?
- Highcharts: Custom button - symbol is misplaced
- Displays Highcharts with portion of given data
- Highcharts on rails app renders twice every time it's loaded
- Highcharts - stacked column - order series index dynamically for each category