Search found 20 matches
- Tue Jun 08, 2004 7:49 am
- Forum: JFreeChart
- Topic: DateAxis Tick labels
- Replies: 11
- Views: 17121
Bump, anyone else with the same problem? This what code I've got: DateAxis axis = new DateAxis("Time"); axis.setRange(fromDate, toDate); DateFormat formatter = new SimpleDateFormat(" dd HHmm'Z' MMMyy "); axis.setDateFormatOverride(formatter); axis.setTickUnit(new DateTickUnit(DateTickUnit.DAY, 1)); ...
- Tue Jun 08, 2004 7:34 am
- Forum: JFreeChart
- Topic: XYLineAndShapeRenderer help please.
- Replies: 2
- Views: 2891
- Mon Jun 07, 2004 7:22 am
- Forum: JFreeChart
- Topic: XYLineAndShapeRenderer help please.
- Replies: 2
- Views: 2891
XYLineAndShapeRenderer help please.
Can someone guide me in the right direction with the following code? XYItemRenderer r = plot.getRenderer(); if (r instanceof XYLineAndShapeRenderer) { XYLineAndShapeRenderer renderer = (XYLineAndShapeRenderer) r; The plot is an XYPlot for a TimeSeriesCollection. It works if I replace XYLineAndShapeR...
- Fri Jun 04, 2004 6:05 am
- Forum: JFreeChart
- Topic: DateAxis Tick labels
- Replies: 11
- Views: 17121
- Fri Jun 04, 2004 5:54 am
- Forum: JFreeChart
- Topic: Draw some Series as just lines and some as symbols in XYPlot
- Replies: 3
- Views: 6312
Why doesn't the following the code fall inside the loop? XYItemRenderer r = plot.getRenderer(); if (r instanceof XYLineAndShapeRenderer) { XYLineAndShapeRenderer renderer = (XYLineAndShapeRenderer) r; It works if I replace XYLineAndShapeRenderer with StandardXYItemRenderer (as in the developers guid...
- Fri Jun 04, 2004 2:51 am
- Forum: JFreeChart
- Topic: Interval Markers
- Replies: 0
- Views: 1989
Interval Markers
How do I get an IntervalMarker on the Range Axis to be filled (shaded Region)? It seems to be default for an IntervalMarker on the Domain (addDomanMarker) axis to be filled, but the same code on the Range (addRangeMarker) only shows up as a line, rather than the shaded region I wanted. It's an XYPlo...
- Thu May 20, 2004 2:05 am
- Forum: JFreeChart
- Topic: JFreeChart 0.9.18
- Replies: 9
- Views: 13262
- Fri May 14, 2004 6:57 am
- Forum: JFreeChart
- Topic: Draw some Series as just lines and some as symbols in XYPlot
- Replies: 3
- Views: 6312
- Fri May 14, 2004 6:13 am
- Forum: JFreeChart
- Topic: Draw some Series as just lines and some as symbols in XYPlot
- Replies: 3
- Views: 6312
Draw some Series as just lines and some as symbols in XYPlot
Is there a was to plot some series as just a lines (no symbols) and other series as just symbols (no lines joining the symbols) in the same dataset?
- Fri May 14, 2004 3:22 am
- Forum: JFreeChart
- Topic: Setting LegendItemsCollection???
- Replies: 1
- Views: 3078
- Fri May 14, 2004 1:01 am
- Forum: JFreeChart
- Topic: DateAxis Tick labels
- Replies: 11
- Views: 17121
- Thu May 13, 2004 7:33 am
- Forum: JFreeChart
- Topic: Setting LegendItemsCollection???
- Replies: 1
- Views: 3078
Setting LegendItemsCollection???
Is there a way to set a LegendItemCollection for an XYPlot? I know you can get the LegendItemCollection, but where do you set them? For instance I want to be able to manipulate what items get displayed in the Legend itself, and I'm assuming the best way is by manipulating the LegendItemCollection? O...
- Thu May 13, 2004 6:27 am
- Forum: JFreeChart
- Topic: DateAxis Tick labels
- Replies: 11
- Views: 17121
- Tue May 11, 2004 9:24 am
- Forum: JFreeChart
- Topic: DateAxis Tick labels
- Replies: 11
- Views: 17121
DateAxis Tick labels
I've just upgraded from 0.9.10 to 0.9.18 and the wiz bang automatic Tick Label spacing of 0.9.10 has dissapeared. With 0.9.18 I get all the date tick labels overwriting each other. :( Is there a way to trigger the automatic tick labelling that only labels the ticks that are written clearly (not over...
- Mon Aug 04, 2003 8:39 am
- Forum: JFreeChart
- Topic: TimeSeries graphs
- Replies: 1
- Views: 3549
TimeSeries graphs
Is there a way to plot data like the following: 12/03/03 12:25:32 500,000 14/03/03 17:52:44 622,000 19/03/03 09:29:02 450,002 So it is data that has exact points and inconsistent time gaps between points but is part of the same series. I am current plotting it with the "TimePeriod" class which means...