Search found 3 matches

by martink
Fri Feb 03, 2012 6:21 pm
Forum: JFreeChart
Topic: [SOLVED] angluar label connection line in pie charts
Replies: 1
Views: 2672

Re: angluar label connection line in pie charts

OK, the link to the example for a good question post on "How to Ask a Question About JFreeChart - READ THIS!" post answered my question :P

Code: Select all

plot.setLabelLinkStyle(PieLabelLinkStyle.QUAD_CURVE);
by martink
Fri Feb 03, 2012 5:38 pm
Forum: JFreeChart
Topic: [SOLVED] angluar label connection line in pie charts
Replies: 1
Views: 2672

[SOLVED] angluar label connection line in pie charts

I'm trying to configure a pie chart to produce angluar connection lines between pie segments and labels. In jfreechart documentation on page 22 (figure 2.2) is an example image where the connection lines are styled the way I want them to look. When lookign at the referenced PieChartDemo2.java, I'm g...
by martink
Thu Aug 21, 2008 2:25 pm
Forum: JFreeChart
Topic: Upside down BarChart
Replies: 2
Views: 5670

axis.setInverted( true )

Hi,

you can set the inversion of the order on any axis, ie by

Code: Select all

NumberAxis axis = (NumberAxis) plot.getRangeAxis();
axis.setInverted( true );
Greetings,

Martin