score:0
you just should add enable: true
in dataLabels:
plotOptions: {
series: {
dataLabels: {
enabled: true,
}
}
}
score:1
For me it worked when i disabled the navigation in the exporting options :
exporting: {
chartOptions: {
legend: {
navigation: {
enabled: false
}
}
}
},
score:11
Yes it is possible by disabling legend in chart and in exporting parameters (http://api.highcharts.com/highcharts#exporting.chartOptions) set this option as active.
Working example: http://jsfiddle.net/xvQNA/
var chart;
$(document).ready(function() {
chart = new Highcharts.Chart({
chart: {
renderTo: 'container',
plotBackgroundColor: null,
plotBorderWidth: null,
plotShadow: false
},
title: {
text: 'Browser market shares at a specific website, 2010'
},
tooltip: {
pointFormat: '{series.name}: <b>{point.percentage}%</b>',
percentageDecimals: 1
},
legend:{
enabled:false
},
exporting:{
chartOptions:{
legend:{
enabled:true
}
}
},
plotOptions: {
pie: {
allowPointSelect: true,
cursor: 'pointer',
dataLabels: {
enabled: true,
color: '#000000',
connectorColor: '#000000',
formatter: function() {
return '<b>'+ this.point.name +'</b>: '+ this.percentage +' %';
}
}
}
},
series: [{
type: 'pie',
name: 'Browser share',
showInLegend:true,
data: [
['Firefox', 45.0],
['IE', 26.8],
{
name: 'Chrome',
y: 12.8,
sliced: true,
selected: true
},
['Safari', 8.5],
['Opera', 6.2],
['Others', 0.7]
]
}]
});
});
Source: stackoverflow.com
Related Query
- Highcharts add legend on export
- Add Source to Highcharts Export CSV
- Add series total to legend in Highcharts
- Add tooltip to legend in highcharts when hovering
- Highcharts - add additional export options without losing default ones
- How do i add mouse wheel code in Angular2 highcharts in typescript
- Highcharts add export as csv
- Highcharts add image on export
- Filtering legend of a Highcharts by only visible series only in Export
- Add a max width to legend in Highcharts
- How can I add a text link just below the legend box in highcharts
- How to add dots to Highcharts legend and bars?
- Highcharts -> how to add vertical title to bar? how to make the symbol in the legend a rectangle?
- Highcharts add 3 buttons Hide/Remove/Settings to Legend
- Highcharts + add sub headers / group in legend
- Add CSS to a specific series' legend label in Highcharts
- Highcharts SVG Export from Python Server Side Code
- Dynamically add and remove custom export button in highcharts
- Highcharts add a legend for marker colors
- Highcharts : remove custom legend tooltip from export
- Highcharts Pie Chart Add Value to the Legend
- Is there any way to add border in highcharts legend text individually?
- Run Highcharts on Server side code to add to Word document
- Add text over export button in Highcharts
- Highcharts add line-through to legend text when hidden (itemHiddenStyle)
- Add labels to columns in highcharts pie chart legend
- How to add flags to highcharts export server when started as a module
- Add symbol to custom legend layout - Highcharts React
- How to add right side legend to US highcharts map that shows eastern states names?
- Calling Highcharts export to jpeg but the source is https and exporting is http (security warnings issued by browser)
More Query from same tag
- Render Highcharts canvas as a PNG on the page
- Highcharts Negative Values Column Graph Bottom Radius
- Separate threshold for each column
- Highchart heatmap: select all cells on click of button or checkbox
- How to properly align Font Awesome symbols on Highcharts scatter plots?
- Angualr2/4 -Unable to generate highchart
- Export chart with image not working
- Printing from Highcharts returns focus to the top of the page
- Highcarts Space between number If the value is exceed 1K
- Disable legend item click in a Highchart defined as JSON
- Is there a complete/ready event even if I turn off the animation effect for a HighChart instance?
- Shared tooltips on a pie in a donut?
- Highchart's heat-map plot not rendering correctly when x-axis is in time format (HH:MM)
- Highcharts-vue options as variable
- bullet chart configuration in highcharts
- Why does the country with no data always go on top?
- I want delete the values from the series so that the graph is not cluttered how to do that
- jquery datatable to highcharts
- Highcharts :: Pie :: Add icon for specific series
- highchart bubble chart dynamic- json format
- How to highlight items in scatter plot in highcharts
- Highcharts legend is overlapping on to the graph area
- How to access y - data in stack column after one of the legend is pressed/removed?
- Highcharts, type: 'mapbubble' causes an error 17
- Highcharts display grid over plot with z-index
- Change X axis label on Drill Down using HighCharts
- Why does my HighStock data drop off when I zoom out?
- Is there anyway to center the Column Chart on the xAxis
- Conditionally show/hide Tooltip of Highcharter
- Fullscreen bootstrap card with highcharts (100% height)