score:1
Accepted answer
You can use data labels configuration for a single point.
events: {
load: function() {
this.addSeries(..., {
x: 3,
y: 1,
dataLabels: {
useHTML: true,
formatter: function() {
var pcnt = (data[this.x].y / dataSum) * 100;
return '...';
}
}
}]
}, true);
}
}
Live demo: https://jsfiddle.net/BlackLabel/9dmtawg3/
API Reference: https://api.highcharts.com/highcharts/series.column.data.dataLabels
Source: stackoverflow.com
Related Articles
- Highchart add a text under single bar in bar chart
- How do you add text to the bottom center of legend and bottom center of chart under legend?
- Remove the categories text under the bars on Highcharts chart
- Highchart Single Legend to control Multiple chart
- Android Highchart bar chart add a text below a bar
- x-axis, y-axis lines does not appear, when I include 3D chart library of HighChart in my code
- Spline chart drawn on the xaxis in case of single value or constant values - highchart
- Highchart display single entry against each category in bar chart
- add text under the bar with plotOptions highchart (BAR)
- Can we manage multiple highchart charts in a single function by changing type in chart drawing functionm
- Place text in center of pie chart - Highcharts
- Manage multiple highchart charts in a single webpage
- Remove Export and print button plugin on highchart chart
- How to export a Highchart chart to PDF thanks to a button outside the chart?
- adapting text to highchart tooltip max width
- How to create a new Highstock chart with new Highchart and not jquery?
- HighCharts.js is not rendering chart under IE8
- Highchart Area Range chart with gradient that follows the line
- HighCharts Pie Chart - Add text inside each slice
- Highchart - Redraw Chart after Window is resized
- Highstock: When legend under the chart has many items, the chart height is small. How can I fix the height?
- Highcharts Donut Chart text in center change on hover
- Highcharts - Position title under chart
- How to change series legend text color in HighChart chart?
- how to reset Highchart chart width in percentage on Button click
- highchart chart redraw method is not refreshing the chart
- Use single color for all series in the same chart
- how to center text inside donut chart embedded in combination chart
- Highchart Axis Update/ chart redraw
- How can I extend the lines of this Highchart series to the edges of my chart area?
- highcharts error #13 histogram
- Highcharts series update with animation
- Javascript dynamically generated variables with 'this'
- web interface using jQuery for Java application
- Calling a function from highcharts upon clicking the piechart
- Recieve HighStock RangeSelector button event in Angular 2+ component
- Angular: Programatically adding multiple y-axes to highstock with navigator
- Wrong labels on X axis on Highcharts
- HeatMap with custom colors for each cell
- How do you remove the partialFill from Highcharts xrange chart
- Format Highcharts y-axis labels
- Highcharts - hide dataLabels leaders
- How do i select range of data in Treemap Highcharts?
- how to fetch data from json file in highchart
- Highcharts touchscreens detection
- Highcharts scatter plot - make tooltip not follow pointer
- highcharts.js column/bar overlap (datetime Xaxis)
- Loading external json file in highchart
- How can I load a function when loading a highchart?
- How to use highchart pattern fill in angular?