Remove pagination for data labels in pie chart

I see if there are more labels,then rendered pie puts the labels in paginated format. How can I disable pagination and show all labels together? 
May be setting extra height and width?



Thanks Samir

1 Reply 1 reply marked as answer

SM Srihari Muthukaruppan Syncfusion Team June 4, 2020 05:25 AM UTC

Hi Samir, 
  
We have analyzed your query. From that, we would like to let you know that we can achieve your requirement by using width property in the legendSettings of the chart. Based on your requirement we have also prepared a sample for reference. Please find the below UG link, code snippet, screenshot, and sample.  
  
  
  
Code Snippet: 
App.component.html: 
  
<div class="control-section"> 
    <div class="col-md-8" > 
        <ejs-accumulationchart style='height: 50%' [legendSettings]="legendSettings">           
      // add your additional code here 
        </ejs-accumulationchart> 
    </div> 
</div> 
  
App.component.ts: 
  
// add your additional code here 
public legendSettings: Object = { 
        visible: true, 
        position: 'Bottom', 
        width: '400' 
    }; 
      
  
Screenshot: 
 
  
Let us know if you have any concerns. 
  
Regards, 
Srihari M 


Marked as answer
Loader.
Up arrow icon