How to show Legend box same on Label in HighChart for pie chart -


how show legend box same on label in highchart pie chart code here label following

      datalabels: {             enabled: true,             color: '#000000',             style: {                 fontsize: '9px'             },             distance:3,             connectorwidth:0,             formatter: function() {                 return math.round(this.percentage) +' %';             }           }, 

try following :

    legend: {         align: 'right',  //you can change         verticalalign: 'top', // change         x: 100, //set want         y: 0 // set want     }, 

Comments

Popular posts from this blog

php - Why I am getting the Error "Commands out of sync; you can't run this command now" -

linux - Does gcc have any options to add version info in ELF binary file? -

java - Are there any classes that implement javax.persistence.Parameter<T>? -