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 - Pie chart is very small
Summary: Pie chart is very small
Status: CONFIRMED
Alias: None
Product: Java TeeChart
Classification: Unclassified
Component: Chart (show other bugs)
Version: unspecified
Hardware: PC Windows
: --- enhancement
Target Milestone: ---
Assignee: Steema Issue Manager
URL:
Keywords:
Depends on:
Blocks:
 
Reported: 2014-10-22 11:24 EDT by alex
Modified: 2014-10-30 07:01 EDT (History)
2 users (show)

See Also:
Chart Series: Pie
Delphi / C++ Builder RAD IDE Version:


Attachments
screenshot (13.69 KB, image/png)
2014-10-22 11:24 EDT, alex
Details

Note You need to log in before you can comment on or make changes to this bug.
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);