score:1
Accepted answer
You need to enable the format.
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
distance: -30,
format: '<b>{point.name}</b>: {point.y:,.2f}',
},
showInLegend: true
}
},
series: [{
name: 'Types',
colorByPoint: true,
data: [ {
name: 'Debtors',
y: 10.38
}, {
name: 'Suppliers',
y: 4.77
},
]
}]
Jsfiddle demo: http://jsfiddle.net/powrcnf1/
score:0
If I understand correctly you need an customized tooltip, like this:
tooltip: {
formatter: function () {
return this.key + ' (<strong>' + this.y + '</strong>)';
}
}
Source: stackoverflow.com
Related Query
- High charts labels display values not names
- How to display Html Entities in High Charts labels
- High charts not showing all the values on X-asix
- HighCharts: display the y-axis labels in percentage instead of the absolute count for basic column charts
- dynamically creating the values for high charts
- Don't display not present date values
- Convert the y-axis values to Millions in dual axis high charts
- High Charts not working
- High charts AddAnnotation is not a function for dynamic adding
- High charts draggable not working for log scale
- How to display total of extra data in stacked column high charts
- High chart data downloads but does not display in browser using node
- High Charts / StockChart: x axis values
- High Charts add variance instead of values
- How to make the Y Axis values not start from 0 in highcharts? How to display forcefully display the last category data on X axis in HighCharts ?
- Why does my addSeries (in highcharts) only display names of the series but not the actual pie chart itself
- High charts not displaying date correctly in x axis per epoch?
- High charts (Time Series Zoomable) not working with my data
- high chart data grouping is not considering all the values while zooming
- why the labels is not display in chart
- not able to show x axis data with datetimelabel format with {hh:mm} in high charts
- Enabling scroll bar on y-axis of the high charts heatmap showing up some additional y-axis labels
- Display the total count of json key-value pairs in the series in high charts
- High Charts Multiple Line Chart not displaying tooltip for multiple lines
- unable to Add display data values on top of bar high chart
- Values not display in highcharts
- how to display array of objects in High stock charts
- Grouping x axis labels for histogram in high charts
- How to display only one x-axis labels in Highcharts synchronized charts
- Highcharts tooltip formatter function does not display values in table correct
More Query from same tag
- Making a timeline in Highcharts
- How to create js.Array inside js.Array in scalaJS for highcharts as specified in the documentation?
- highcharts - windrose stackLabel doesn't work properly
- Highstock: How can I format the xAxis crosshair label?
- define x values for hc_add_series_list in highcharter
- Adding dynamic irregular data to area chart causes it to shift
- Formatting JSON Data with ColdFusion for HighCharts
- Highcharts spider chart padding issue
- HighCharts.StockChart tooltip lables on hover of datapoints is incorrect
- HighCharts datetime xAxis without missing values (weekends)
- I can't use gauge-solid and spline chart at the same time by using HighCharts
- Highcharts : Change opacity of a column chart
- Highchart in ASP MVC page load not working properly
- how to add xAxis.tick dynamically
- How to generate proper csv file format using javascript
- How to create a highchart with 3 different series categories name
- HighCharts area graph - show tooltip only on hover of marker
- Highcharts multiple values for 1 date?
- Highcharts. Series have same color after drilldown
- How to detect the correct date format in highcharts
- Highcharts donut ring coloring only selective part
- Highcharts arearange draggableHigh and draggableLow not working
- how to show data json to 2 different highchart bar
- Hide a specific series legend in a column chart with multiple series
- Highcharts - Column width not responsive
- How to set a static minimum value for axes in Highcharts
- JSON api timestamp + data parsing
- Fixing/discounting a data series when changing chart-type in Highcharts
- I'm trying to have a hide series button on my highchart but it makes the chart disappear
- How to implement "zebra striping" in highcharts axes