Search found 3 matches

by mlavwilson
Wed Mar 23, 2005 6:08 pm
Forum: JFreeChart
Topic: User select range for time series...
Replies: 1
Views: 1922

User select range for time series...

I have a timeseries that I want to give the user an option to show the last 60, 120, 180... I want to maintain all the data so that when the user selects 180 when it was 60 I do not have to fetch the data again. Is there a more elegant way than what I have done below? import java.util.Locale; import...
by mlavwilson
Tue Mar 22, 2005 3:26 pm
Forum: JFreeChart
Topic: StackedXYAreaRenderer + TimeSeriesCollection => Exception
Replies: 9
Views: 13592

Developers Guide

I would like to see a topic on charting stacked time series in the Developers Guide :D

On a more personal note, good job on this open source effort. I know the effort that is needed to get a project to the point it is now, Congrats.

Matthew Wilson
-http://valuelist.sourceforge.net
by mlavwilson
Tue Mar 22, 2005 3:10 pm
Forum: JFreeChart
Topic: StackedXYAreaRenderer + TimeSeriesCollection => Exception
Replies: 9
Views: 13592

package net.mlw.playground.view.message; import java.util.Date; import javax.swing.JComponent; import org.jfree.chart.ChartPanel; import org.jfree.chart.JFreeChart; import org.jfree.chart.axis.DateAxis; import org.jfree.chart.axis.DateTickMarkPosition; import org.jfree.chart.axis.NumberAxis; import...