Search found 24 matches

by uli
Tue Feb 12, 2019 4:10 pm
Forum: JFreeChart
Topic: DeviationRenderer and null values
Replies: 0
Views: 8445

DeviationRenderer and null values

Hello,
Is there a way to change the behavior of a DeviationRenderer at null values? The standard way is to disconnect the line but continue the drawing of the interval (the shading). I would like to have the interval also being disconnected at null values.

Thanks,
Julia
by uli
Wed Oct 25, 2017 12:45 pm
Forum: JFreeChart
Topic: Rendering Middle Millisecond instead of first Millisecond
Replies: 2
Views: 4053

Re: Rendering Middle Millisecond instead of first Millisecon

That's what I was looking for, thanks!
by uli
Tue Oct 24, 2017 11:51 am
Forum: JFreeChart
Topic: Rendering Middle Millisecond instead of first Millisecond
Replies: 2
Views: 4053

Rendering Middle Millisecond instead of first Millisecond

Hello, I have a chart with XYLineAndShapeRenderer and a TimeSeries with RegularTimePeriods Day. The shapes are rendered at the first millisecond of each day. But I would like to have them rendered at the middle millisecond (at noon). Is that a setting in the renderer? I can make a workaround by usin...
by uli
Wed Mar 22, 2017 2:04 pm
Forum: JFreeChart
Topic: Null values in TimeSeries
Replies: 2
Views: 3958

Re: Null values in TimeSeries

You were right, null values were not added to the timeseries (sorry for not checking this before). This code is about 10 years old and I read about some bugs with null values those days. Maybe that's why.
Anyway, now it works fine, Thanks!
by uli
Tue Mar 21, 2017 2:57 pm
Forum: JFreeChart
Topic: Null values in TimeSeries
Replies: 2
Views: 3958

Null values in TimeSeries

Hello, How can I set the behaviour of null values in a Timeseries? In the examples I found (e.g. here http://www.java2s.com/Code/Java/Chart/JFreeChartTimeSeriesDemo4usinghourlydataandincludinganullvalue.htm) the method org.jfree.chart.ChartFactory.createTimeSeriesChart(String, String, String, XYData...
by uli
Mon May 30, 2016 1:17 pm
Forum: JFreeChart
Topic: crosshair value for 2nd axis
Replies: 0
Views: 4416

crosshair value for 2nd axis

Hello, I have a plot with two datasets and two range axes, where the first dataset is mapped to the first axis and the second to the second. The crosshair is locked to the data. If I click on a series that is in the first dataset, the crosshair is displayed correctly. if I click on a series that is ...
by uli
Wed Mar 13, 2013 6:02 pm
Forum: JFreeChart
Topic: Bug - AutoRange in TimeSeriesChart
Replies: 13
Views: 14679

Re: Bug - AutoRange in TimeSeriesChart

Great! I also noticed this problem and I'm happy that it is solved (already on 2011-12-03 as I saw in the commit). But there comes a stupid question to me: How can I get the updated jar files? Downloading the jfreechart-1.0.14.zip from sourceforge gives me still the version from 2011-11-20. Do I nee...
by uli
Wed Mar 13, 2013 4:18 pm
Forum: JFreeChart
Topic: JFreeChart and Eclipse RAP
Replies: 0
Views: 2973

JFreeChart and Eclipse RAP

Hi, Is there any news / experience about how to intrgrate a JFreeChart into an Eclipse Rich Ajax Platform (RAP)? - SWT_AWT embedded is not supported in the RAP - org.jfree.experimental.chart.swt.ChartComposite uses MouseListener and other things that are also not supported Is there any new way in th...
by uli
Sat Oct 06, 2012 4:58 pm
Forum: JFreeChart
Topic: labels of rangeAxis,domian and legen are NOT visible
Replies: 8
Views: 7994

Re: labels of rangeAxis,domian and legen are NOT visible

OK, thanks David! I'll patiently wait for the 1.0.15 release then ;-)
by uli
Mon Oct 01, 2012 1:33 pm
Forum: JFreeChart
Topic: labels of rangeAxis,domian and legen are NOT visible
Replies: 8
Views: 7994

Re: labels of rangeAxis,domian and legen are NOT visible

Hi, Is there any news about this topic? So far I used SWT_AWT to include JFreeCharts into Eclipse. But since the experimental swt.ChartComposite is supposed to be faster, I wanted to try this. I found two examples in the internet: 1) http://www.devdaily.com/java/jwarehouse/jfreechart/swt/org/jfree/e...
by uli
Wed Jan 13, 2010 5:39 pm
Forum: JFreeChart
Topic: findSubplot(): strange behaviour
Replies: 2
Views: 3015

Re: findSubplot(): strange behaviour

Thank you, Dave, for your very helpful answer! Indeed, case (1) was true. I didn't know that the maximum draw size is limited (768 x 1024 pixel) and one has to change it. The following lines of code now solved the problem: // get the monitor size (under Eclipse), in my case 1050 x 1680 pixel Rectang...
by uli
Sun Jan 10, 2010 6:48 pm
Forum: JFreeChart
Topic: findSubplot(): strange behaviour
Replies: 2
Views: 3015

findSubplot(): strange behaviour

Dear all, I found a strange behaviour of the method findSubplot(info, point), or maybe more precise in the Method info.getPlotArea(). It seems like the maximum (internal) height of the plot area is 735.5390625. Although in fact it is larger. This leads to the fact that findSubplot(info, point) does ...
by uli
Thu May 21, 2009 3:02 pm
Forum: JFreeChart
Topic: How to fix the X axis As Integer ?
Replies: 2
Views: 3162

Re: How to fix the X axis As Integer ?

Your Integer problem can be solved like this:

NumberAxis axis = new NumberAxis();
axis.setStandardTickUnits(NumberAxis.createIntegerTickUnits());

To label the ticks in a special way you can use the classes TickUnits, DateTickUnit and NumberTickUnit.
See the Javadoc for more information!
by uli
Mon May 18, 2009 6:17 pm
Forum: JFreeChart
Topic: JFreeChart in an Eclipse RCP applciation
Replies: 1
Views: 2687

Re: JFreeChart in an Eclipse RCP applciation

I've never heared about the class 'PublicCloneable'. Is it necessary to use an OSGI bundle wrapper? I included JFreeChart like this: * copy all jar files from the lib folder of JFreeChart to the root directory of your project * open eclipse * open plugin.xml of your project * go to the tab folder 'R...
by uli
Mon May 18, 2009 5:58 pm
Forum: JFreeChart
Topic: StandardCrosshairLabelGenerator
Replies: 0
Views: 2161

StandardCrosshairLabelGenerator

Hi,

Where can I find an example on how to use the new StandardCrosshairLabelGenerator?
XYPlot has a crosshair already. Is the new class Crosshair conflicting with that?

Best regards,
uli