Search found 157 matches

by jwenting
Thu Nov 15, 2007 7:21 am
Forum: JFreeChart
Topic: JFreeChart on Maven 2 repository
Replies: 11
Views: 11535

henryju wrote: An what about a Maven 2 migration for next release of JFreeChart? ;)
Feel free to donate the necessary work :wink:
by jwenting
Mon Nov 05, 2007 3:34 pm
Forum: JFreeChart - Stockmarket
Topic: strange!!!
Replies: 6
Views: 17488

I like he magic brownies better 8)
by jwenting
Mon Nov 05, 2007 12:39 pm
Forum: JFreeChart - Stockmarket
Topic: strange!!!
Replies: 6
Views: 17488

it happens automagically.
by jwenting
Mon Nov 05, 2007 7:14 am
Forum: JFreeChart - Stockmarket
Topic: strange!!!
Replies: 6
Views: 17488

small gnomes eating magic brownies that sit in your computer reading the JFreeChart sourcecode :shock:
by jwenting
Thu Nov 01, 2007 1:04 pm
Forum: JFreeChart
Topic: 'warning: [unchecked]' wrt java.util.List getSubplots()
Replies: 5
Views: 5248

logical. As soon as you pass a specific type you're triggering the warning by having a typed collection to which you're adding elements with no specific type in the (1.4 compliant) code. By telling it to use Object[] you're effectively creating an untyped collection which will fit anything. That's t...
by jwenting
Wed Oct 31, 2007 7:24 am
Forum: JFreeChart
Topic: 'warning: [unchecked]' wrt java.util.List getSubplots()
Replies: 5
Views: 5248

You can't. There are only 3 options that will get rid of those warnings:
1) genericise the code
2) add the @SuppressWarnings("unchecked") annotation
3) suppress the warning at compiler level using the -Xlint:-unchecked flag.

As you don't want to do any of the above, you'll have to live with it.
by jwenting
Mon Oct 22, 2007 6:45 am
Forum: JFreeChart
Topic: scatter plot chart using JChart api(jCharts-0.7.5.jar)
Replies: 6
Views: 17236

Either use a TimeSeries instead of an XYSeries or use the timestamp as a long as the coordinate (which will not look nice with the standard rendering of course).
by jwenting
Mon Oct 15, 2007 11:44 am
Forum: JFreeChart
Topic: VU-meter like chart
Replies: 4
Views: 4395

Either the MeterPlot or the (experimental) DialPlot could be adopted to your needs.
by jwenting
Mon Oct 15, 2007 11:41 am
Forum: JFreeChart - Stockmarket
Topic: Using moving average with line chart!!!
Replies: 3
Views: 12118

the javadoc for JFreeChart. There you'll find every class and method that's publicly accessible.
by jwenting
Mon Oct 15, 2007 10:14 am
Forum: JFreeChart
Topic: DateAxis of timeseries containing days with 25 hours
Replies: 9
Views: 10158

would by any chance the 28th mark the end of DST in the timezone you're using?
by jwenting
Mon Oct 15, 2007 10:11 am
Forum: JFreeChart - Stockmarket
Topic: Using moving average with line chart!!!
Replies: 3
Views: 12118

Check the documentation, it clearly answers your question.
by jwenting
Wed Oct 10, 2007 6:58 am
Forum: JFreeChart
Topic: New please Help
Replies: 1
Views: 2667

1) width depends on available space, so not until you draw it.
2) check the documentation, I've never had to do so.
by jwenting
Fri Oct 05, 2007 6:18 am
Forum: JFreeChart
Topic: New to JFreeChart, does this scenario work on JFreeChart
Replies: 6
Views: 5846

That depends on what your data is. I assumed it's some sort of time series, with a single point at each location on the horizontal axis. If there can be multiple points at each axis location then yes, you get a theoretically higher maximum density. Still only a few percent of your five million point...
by jwenting
Thu Oct 04, 2007 5:36 am
Forum: JFreeChart
Topic: New to JFreeChart, does this scenario work on JFreeChart
Replies: 6
Views: 5846

What's the normal visible range of human eyes in pixel terms? Say if I want to display it nicely on 1/4 of my 22 inches screen, 1680x1050 resolution, what is the size of the chart I should set? 840x525? This may be stupid but I really don't know. A quarter of 1680x1050 is 840x525 indeed. So that's ...
by jwenting
Thu Oct 04, 2007 5:31 am
Forum: JFreeChart
Topic: Setting the default path in the export dialog
Replies: 8
Views: 7137

The standard Java FileDialog can have its (current) path set (and read).