Steema Issues Database

Note: This database is for bugs and wishes only. For technical support help, if you are a customer please visit our online forums;
otherwise you can use StackOverflow.
Before using this bug-tracker we recommend a look at this document, Steema Bug Fixing Policy.



Bug 975

Summary: Pie chart is very small
Product: Java TeeChart Reporter: alex
Component: ChartAssignee: Steema Issue Manager <issuemanager>
Status: CONFIRMED ---    
Severity: enhancement CC: marc, sandra
Priority: ---    
Version: unspecified   
Target Milestone: ---   
Hardware: PC   
OS: Windows   
Chart Series: Pie Delphi / C++ Builder RAD IDE Version:
Attachments: screenshot

Description alex 2014-10-22 11:24:27 EDT
Created attachment 312 [details]
screenshot

Please generate pie chart with 15 sectors and long text in labels. You will see that chart is very small (see screenshot pie_chart_issue). Could you not reduce size of pie chart and draw labels on it?
Comment 1 marc meumann 2014-10-30 07:01:25 EDT
Feature request noted.

A similar functionality can be achieved by setting ArrowLength to a negative figure:

eg.
        pieSeries.getMarks().setTransparent(true);
        pieSeries.getMarks().getArrow().setVisible(false);
        pieSeries.getMarks().getFont().setColor(Color.WHITE);
        pieSeries.getMarks().setArrowLength(-40);