Search found 7 matches

by rlenard
Wed Jan 19, 2005 7:34 am
Forum: JFreeChart
Topic: How best to work around this limitation ?
Replies: 0
Views: 1450

How best to work around this limitation ?

I have a CombinedDomainCategoryPlot with a number of subplots in it. Each of the subplots has their own (different) number axis. When the plots are aligned horizontally, and the plot axis set to have vertical tick labels (to ensure the axis tick values don't overlap) then the axis labels are not lin...
by rlenard
Wed Jan 19, 2005 3:40 am
Forum: JFreeChart
Topic: Is there a way to force a tick onto an Axis ?
Replies: 3
Views: 3030

Of course there is one: rangeAxis.setTickUnit(new NumberTickUnit(10)); That will put just that tick unit on. Is there a way to add that tick unit plus what are added by default ? You can override refreshTicks - but that is painful because you have to duplicate the direction related layout code from...
by rlenard
Tue Jan 18, 2005 10:29 pm
Forum: JFreeChart
Topic: Is there a way to force a tick onto an Axis ?
Replies: 3
Views: 3030

angel wrote:Of course there is one:

Code: Select all

rangeAxis.setTickUnit(new NumberTickUnit(10));
That will put just that tick unit on. Is there a way to add that tick unit plus what are added by default ?
by rlenard
Tue Jan 18, 2005 4:28 am
Forum: JFreeChart
Topic: tick label - own format
Replies: 4
Views: 3489

Exactly. I realized it several dosen minutes after the question. For any other people with similar problem: Overide NumberFormat or DateFormat (or other) class and implement your own fomater in abstract methods. Course it'd be nicer to just be able to use a Format rather than a NumberFormat - then ...
by rlenard
Thu Nov 11, 2004 4:20 am
Forum: JFreeChart
Topic: What does size of median circle on BoxAndWhisker mean ?
Replies: 9
Views: 17271

What does size of median circle on BoxAndWhisker mean ?

Is there any significance to the size of the median circle on the box and whisker plot or is it just meant to scale up with size of the box ? Reason being if I have a really wide (vertical) box the circle gets so big it looks stupid... Does it need to be there or could it be a fixed maximum size ? (...
by rlenard
Wed Nov 10, 2004 11:07 pm
Forum: JFreeChart
Topic: Bug: BoxAndWhiskerRenderer ?
Replies: 1
Views: 2095

Potential Fix ?

I added this code to the end of the if ( ) and it gets rid of the IllegalArgumentException

Code: Select all

if (xQ1 != null && xQ3 != null && xMax != null && xMin != null)
{

... 

}// <ADDED>
else {
    box = new Rectangle2D.Double(0, yy, 0, state.getBarWidth());
}
// </ADDED>
by rlenard
Wed Nov 10, 2004 10:34 pm
Forum: JFreeChart
Topic: Bug: BoxAndWhiskerRenderer ?
Replies: 1
Views: 2095

Bug: BoxAndWhiskerRenderer ?

I have a chart with a large number of box & whiskers displayed and want to but in some "no data" rows. So I created a "Null" BoxAndWhiskerItem (i.e. one with null for all the values - except the outliers values which have to be non-null), added it to a DefaultBoxAndWhiskerCategoryDataset. However wh...