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
Search found 24 matches
- Tue Feb 12, 2019 4:10 pm
- Forum: JFreeChart
- Topic: DeviationRenderer and null values
- Replies: 0
- Views: 11078
- Wed Oct 25, 2017 12:45 pm
- Forum: JFreeChart
- Topic: Rendering Middle Millisecond instead of first Millisecond
- Replies: 2
- Views: 6459
Re: Rendering Middle Millisecond instead of first Millisecon
That's what I was looking for, thanks!
- Tue Oct 24, 2017 11:51 am
- Forum: JFreeChart
- Topic: Rendering Middle Millisecond instead of first Millisecond
- Replies: 2
- Views: 6459
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...
- Wed Mar 22, 2017 2:04 pm
- Forum: JFreeChart
- Topic: Null values in TimeSeries
- Replies: 2
- Views: 6233
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!
Anyway, now it works fine, Thanks!
- Tue Mar 21, 2017 2:57 pm
- Forum: JFreeChart
- Topic: Null values in TimeSeries
- Replies: 2
- Views: 6233
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...
- Mon May 30, 2016 1:17 pm
- Forum: JFreeChart
- Topic: crosshair value for 2nd axis
- Replies: 0
- Views: 5509
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 ...
- Wed Mar 13, 2013 6:02 pm
- Forum: JFreeChart
- Topic: Bug - AutoRange in TimeSeriesChart
- Replies: 13
- Views: 24011
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...
- Wed Mar 13, 2013 4:18 pm
- Forum: JFreeChart
- Topic: JFreeChart and Eclipse RAP
- Replies: 0
- Views: 3864
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...
- Sat Oct 06, 2012 4:58 pm
- Forum: JFreeChart
- Topic: labels of rangeAxis,domian and legen are NOT visible
- Replies: 8
- Views: 10986
Re: labels of rangeAxis,domian and legen are NOT visible
OK, thanks David! I'll patiently wait for the 1.0.15 release then 

- Mon Oct 01, 2012 1:33 pm
- Forum: JFreeChart
- Topic: labels of rangeAxis,domian and legen are NOT visible
- Replies: 8
- Views: 10986
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...
- Wed Jan 13, 2010 5:39 pm
- Forum: JFreeChart
- Topic: findSubplot(): strange behaviour
- Replies: 2
- Views: 4568
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...
- Sun Jan 10, 2010 6:48 pm
- Forum: JFreeChart
- Topic: findSubplot(): strange behaviour
- Replies: 2
- Views: 4568
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 ...
- Thu May 21, 2009 3:02 pm
- Forum: JFreeChart
- Topic: How to fix the X axis As Integer ?
- Replies: 2
- Views: 5852
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!
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!
- Mon May 18, 2009 6:17 pm
- Forum: JFreeChart
- Topic: JFreeChart in an Eclipse RCP applciation
- Replies: 1
- Views: 4591
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...
- Mon May 18, 2009 5:58 pm
- Forum: JFreeChart
- Topic: StandardCrosshairLabelGenerator
- Replies: 0
- Views: 3551
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
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