Search found 6 matches

by c@dsp
Fri Feb 26, 2016 5:17 pm
Forum: JFreeChart
Topic: XYDifferenceRenderer Null series data error
Replies: 6
Views: 5764

Re: XYDifferenceRenderer Null series data error

I updated another line, I was having issues with mouse handlers because it was still adding the null series as an entity with a null area. With shapes turned on this resulted in the returned entity always being the entity with null Y if you click everywhere to the left of that point. The slight chan...
by c@dsp
Tue Feb 23, 2016 4:08 pm
Forum: JFreeChart
Topic: XYDifferenceRenderer Null series data error
Replies: 6
Views: 5764

Re: XYDifferenceRenderer Null series data error

I made the same changes to the JFreechart 1.0.19 (which I think is the latest) /* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2014, by Ob...
by c@dsp
Tue Feb 23, 2016 3:00 pm
Forum: JFreeChart
Topic: XYDifferenceRenderer Null series data error
Replies: 6
Views: 5764

Re: XYDifferenceRenderer Null series data error

I updated the code just a bit, to remove some unnecessary changes.

And to your question the last change log in the top comment was * 17-Jun-2008 : Apply legend shape, font and paint attributes (DG);
I am using JFreeChart 1.0.13
by c@dsp
Mon Feb 22, 2016 8:51 pm
Forum: JFreeChart
Topic: XYDifferenceRenderer Null series data error
Replies: 6
Views: 5764

Re: XYDifferenceRenderer Null series data error

I figured out how to do what I want... if anyone else needs this: /* =========================================================== * JFreeChart : a free chart library for the Java(tm) platform * =========================================================== * * (C) Copyright 2000-2008, by Object Refinery...
by c@dsp
Mon Feb 08, 2016 8:06 pm
Forum: JFreeChart
Topic: XYDifferenceRenderer Null series data error
Replies: 6
Views: 5764

XYDifferenceRenderer Null series data error

I have created an XYChart with an XYDifferenceRenderer. It has an XYDataset with two series in it. final XYSeries series1 = new XYSeries("First Year"); series1.add(1.0, 1.0); series1.add(2.0, 4.0); series1.add(3.0, 2.0); series1.add(4.0, null); series1.add(5.0, 3.0); series1.add(6.0, 2.0); final XYS...
by c@dsp
Wed Jan 20, 2016 7:28 pm
Forum: JFreeChart
Topic: SymbolAxis Tick labels disapear when resized small
Replies: 0
Views: 3788

SymbolAxis Tick labels disapear when resized small

It seams that the SymbolAxis hides the tick labels if they are too big for the view. Is there an easy way to override this behaviour? And since I'm making a post, if there was a way to rotate the text to 45 degrees that would be nice to know.