score:0
Unfortunately this option is not supported, only what you can do is use renderer to add custom text inside chart, but I'm aware that it can be not comfortable solution. http://api.highcharts.com/highcharts#Renderer.text()
Obviosuly you can reqest your suggestion in our user voice system http://highcharts.uservoice.com/
score:2
Add another data series, which is a type of "Scatter" and apply the data labels to this series using Marker. The trick is to use the same fill color as your background color and 0 line width so the marker will not be visible and only the label will be shown.
{
name: 'Outlier',
color: 'white',
type: 'scatter',
data: [ // x, y positions where 0 is the first category
{
name: 'This is my label for the box',
x:0, //box index. first one is 0.
y:975 //it will be bigger than the maximum value of of the box
}
],
dataLabels : {
align: 'left',
enabled : true,
formatter : function() {
return this.point.name;
},
y: 10,
},
marker: {
fillColor: 'white',
lineWidth: 0,
lineColor: 'white'
}
}
score:2
Not possible out of the box, but as mentioned by Steve Gu achievable by scatter. You can even ignore the formatter and disable the marker alltogether:
{
series: [
{
type: 'scatter',
tooltip: {
enabled: false
},
dataLabels: {
format: '{key}',
enabled: true,
y: 0,
},
data: [{ x: 0, y: 975, name: '975'}],
marker: {
enabled: false,
}
}
]
}
just disable marker and set format to key.
Source: stackoverflow.com
Related Query
- Highcharts : Display the labels (min, max, median etc.) in boxplot
- Highcharts Boxplot - box with lower, upper quartile and median is not displaying when min and max are null of a category
- how to display 2 same highcharts without duplicate the code
- Highcharts Pie doesn't display the labels (for some data series)
- Highcharts - Display the noData overlay and the x-axis labels
- Display series labels at the end of each line in Highcharts Editor
- How can I display crosshair labels on top of the chart with Highcharts
- Why do my highcharts yaxis tick positions change the min and max of my chart?
- Display of plotted point labels not appearing properly on X Range Chart for the first date of month - Highcharts
- How to set a function to the max value in boxplot highcharts
- Highcharts boxplot custom labels for maximum quartiles median and minimum?
- How to display the value instead of percentage in a pie chart using jquery Highcharts
- Always display data labels above columns in HighCharts
- How to hide labels in the highcharts in the pie
- Highcharts - How to display legend symbol inside the tooltip
- Highcharts X-axis labels on the side
- Why are the labels for my opposite yaxis in Highcharts not showing up?
- *Highcharts* How to get the min and max value of the zoom box
- Panning in Highcharts will not allow to go back to the max of the xAxis
- How do I style the series labels on a Highcharts pie chart?
- r- how to display the labels on the highcharter objects all the time
- Highcharts : How to fix labels to the top when xAxis rotation is 90°?
- highcharts data labels overlaps the plotlines value
- HighCharts: display the y-axis labels in percentage instead of the absolute count for basic column charts
- How to remove the value and number labels from Highcharts angular gauge
- Distance between x-axis labels and the chart in Highcharts
- Is there a way to change the display value in series using highcharts
- Why do I have the issue 'property assigment expected' when I want to display a chart on my web page using highcharts
- How do I force highcharts to pay attention to min and max on my secondary axis?
- How can I display the outcome of the for loop in highcharts
More Query from same tag
- How to set scrollbar in highchart tooltip?
- Highcharts - Reverse order of stacks on negative y-axis
- Highcharts with multiple series from JSON
- Highcharts skipping second x-axis label
- Single Quotes not showing up properly in HighCharts graph
- Highcharts: Updating a Pie Chart with setData()
- .net Highcharts can't show the bar chart correctly in mvc
- Highcharts real time chart with incoming Json data [FIXED[]
- How to make podium with highchart
- Django and Highcharts - Generating charts, and still being DRY?
- How to email any chart using Highcharts?
- Unable to download a file using java
- Highchart area chart with date time
- highcharts hide xAxis
- Removing Extended Wrap Method From Highcharts.wrap
- How can I change the color of the selected point in Highcharts?
- Is it possible update Highchart data automatically and make animated effect?
- Dynamically update tooltip date format highchart
- highcharts stackLabels updating issue
- Highchart not displaying in cakephp
- How can I load a function when loading a highchart?
- Basic Highcharts Bubble Drilldown
- Decrease x-axis label density in highcharts
- how to use object as series for Highcharts
- Linking highcharts text renderer to javascript function
- The Gauge needle is always started from 0 when it's value is updated | HighCharts with Angular 7
- highchart : add point without changing the series' line
- Parsing CSV based on Popup Properties
- Highcharts map example not working
- Spacing between plot border and start of data plotting in highcharts