score:1
Apparently there is a labelrank property on the Highcharts point objects that can be used to dictate which point labels are on top. It can be used when you're creating your data like this:
data: [{
x: 1, y: 1, labelrank: 1, name: 'A'
},{
x: 1, y: 1, labelrank: 2, name: 'B'
}]
Or it can be updated on an individual point to bring that point's dataLabel to the front by doing something like this: chart.series[0].points[0].update({labelrank: 3});
I had a similar issue and created this question on SO that just was answered.
Edit
They have added info regarding series.data.labelrank
to their docs as well: http://api.highcharts.com/highcharts#series.data.labelrank
score:2
You can set useHTML: true
flag, and then set z-index: x
property for dataLabels, see: http://jsfiddle.net/ZLmU8/4/
Source: stackoverflow.com
Related Query
- Highcharts bubble chart dataLabels overlapping
- Highcharts bubble chart dataLabels overlapping despite z-index
- Highcharts bubble chart datalabels color contrast issue
- Highcharts bubble chart datalabels not display
- Highcharts 3.0 Bubble Chart -- Controlling bubble sizes
- Rotating dataLabels in a Highcharts pie chart
- Highcharts - Bubble chart - Moving gridlines
- Displaying additional text for Highcharts Bubble chart
- Highcharts Bubble Chart - How to move an individual point's data label (dataLabel) to the front/top
- Overlap datalabels line chart highcharts
- Motion in drilldown bubble chart Highcharts
- HighCharts - Show categories in x axis intead of the value of x in Bubble Chart
- HighCharts Stock Chart error code 18
- Highcharts - Bubble chart - Proportional bubbles
- Change dataLabels font size when zooming in Highcharts bubble graph
- Highcharts Pie chart multi line labels overlapping
- Highcharts can't render a bubble chart with a single series
- Highcharts - bubble chart with titles at x- and y-Axis - Error #14
- Drawing Bubble Chart by using npm highcharts with error #17
- Radial Pie Chart Datalabels in Highcharts
- Highcharts - line chart dataLabels on every other point?
- Highcharts Bubble Chart - How to get the size of the point
- change datalabels color in a HighCharts chart when hovering without updating the series
- Avoid overlapping in highchart bubble chart
- Highcharts display label for pie chart using html table as data source
- Highcharts - How to force dataLabels to show labels when overlapping the content
- How to instruct highcharts scatter chart to print all dataLabels
- Create Highcharts bubble chart dynamically
- No data to display in highcharts showing up with the data in Bubble Chart
- Highchart bar chart datalabels overlapping issue
More Query from same tag
- highchart drilldown dynamic point name
- Highcharts: how to add custom SVG icon on custom stock-tool button?
- Don't disable "all" button in range selector in Highstock
- Highchart: stacked grouped column
- HighStock: Loading series data asynchronously as needed
- Chart's width is impacting to my second x axis labels in Highcharts
- Highchart re renders 0 values
- HighCharts getting data from database to outside js file
- Highcharts Error #16: charts not showing on the same page
- Highcharts column chart grouping
- (how) can we create semi circle donut chart, with range labels?
- Highchart not rendering data from dynamically created array array
- highcharts / node-export-server: Blank charts with large data sets
- highchart in popover - bootstrap 4
- How to change background color of every single bubble in highcharts?
- HIghcharts.js addseries doesn't work?
- TreeMap chart of Highcharts in Angular
- how can we make bar width dynamic in highcharts?
- Highcharts / Highstock scroll to right
- Highcharts, Javascript
- HighCharts: loading from csv file, blank page in HTML/JS
- How to display percentage along with Count value in Pie chart Using Higcharts Plugin?
- isDirtyBox and isDirtyLegend
- PHP and highcharts: add mysql results as new column in CSV file
- Query selector for the individual buttons in range selector
- HighCharts: Resize markers of scatter chart dynamically
- Hightchart change design and functionality
- How to show categorized Highcharts Chart using csv file
- Highcharts(highstock) line chart Tooltip shows previous date
- How to format y values in a tool tip to show commas?