Search found 4 matches

by Lionel Père
Tue Feb 19, 2013 10:18 am
Forum: Java
Topic: Android : PieChart not circular.
Replies: 7
Views: 12819

Re: Android : PieChart not circular.

I'm stupid ... didn't call setCirled(true) on my Pie() series.

Thank you a lot for your help, everything is now OK !

Great support service.

Lionel
by Lionel Père
Mon Feb 18, 2013 4:28 pm
Forum: Java
Topic: Android : PieChart not circular.
Replies: 7
Views: 12819

Re: Android : PieChart not circular.

I just purchased your product 2 weeks ago. "Build 3.2012.1120" Actually, I use the same TChart to produce differents charts. When I select a type of chart, generate his Series with the following method. private void generateChart(int chartType) { mTChart.getHeader().setText(getResources().getStringA...
by Lionel Père
Mon Feb 18, 2013 8:39 am
Forum: Java
Topic: Android : PieChart not circular.
Replies: 7
Views: 12819

Re: Android : PieChart not circular.

My bad, I paste the wrong code mTChart = (TChart) rootView.findViewById(R.id.chart); mTChart.getAspect().setView3D(false); mTChart.getAspect().setOrthogonal(true); // mTChart.getPanel().setMarginLeft(20); mTChart.getPanel().setColor(new Color(getResources().getColor(R.color.white))); mTChart.getPane...
by Lionel Père
Fri Feb 15, 2013 11:10 am
Forum: Java
Topic: Android : PieChart not circular.
Replies: 7
Views: 12819

Android : PieChart not circular.

Hi, I have a problem with some pie, when i have too long and too much labels. The pie is not circular anymore. What can i do to keep it circular ? I don't mind if it has to be smaller, but i don't want to see something like that (see attachment). I use the following code to layout my chart : private...