Search found 23 matches

by Mike Keller
Mon Dec 20, 2010 5:14 pm
Forum: JFreeChart
Topic: Trouble Compiling
Replies: 9
Views: 10044

Re: Trouble Compiling

I'm actually not sure where the first error occurs, there are enough that it fills up the command window beyond what it can even scroll up to. I could check by writing it to a log file, however, I just now solved the problem by running an elevated command window.
by Mike Keller
Thu Dec 16, 2010 6:55 pm
Forum: JFreeChart
Topic: Trouble Compiling
Replies: 9
Views: 10044

Re: Trouble Compiling

Yes. I will double-check, though. Possibly I made a typo or otherwise have the path to the directory wrong.
by Mike Keller
Thu Dec 16, 2010 6:22 pm
Forum: JFreeChart
Topic: Trouble Compiling
Replies: 9
Views: 10044

Re: Trouble Compiling

Yes, I did remove the spaces. This is what my command-line looks like now: javac -classpath "C:\Program Files\java2\modules\ext\swing-worker-1.1.jar;C:\Program Files\java2\modules\ext\appframework-1.0.3.jar;C:\Program Files\jfreechart1.0.13\lib\jcommon-1.0.16.jar;C:\Program Files\jfreechart1.0.13\li...
by Mike Keller
Thu Dec 16, 2010 5:29 pm
Forum: JFreeChart
Topic: Trouble Compiling
Replies: 9
Views: 10044

Re: Trouble Compiling

Thank you, hopefully that will work. I will try it in a bit. Also, to include the JFreeChart classes, do I need to do anything more than include the .jar files in the classpath? I think I must, but I'm not sure what. Edit: I did just try recompiling. I got the same errors as I have been, which are l...
by Mike Keller
Wed Dec 15, 2010 6:26 pm
Forum: JFreeChart
Topic: Trouble Compiling
Replies: 9
Views: 10044

Trouble Compiling

Hey all, I've been using JFreeChart for a while for a project for a professor at my university. It was all going well, and in fact, I was able to compile this program before. But now he wanted the entire thing deployed to a number of Windows 7 Laptops. I actually was able to move it without recompil...
by Mike Keller
Mon Aug 16, 2010 3:47 pm
Forum: JFreeChart
Topic: JFreeChart on Windows 7?
Replies: 8
Views: 8157

Re: JFreeChart on Windows 7?

That did the trick! Brilliant work!
by Mike Keller
Mon Aug 16, 2010 1:52 pm
Forum: JFreeChart
Topic: JFreeChart on Windows 7?
Replies: 8
Views: 8157

Re: JFreeChart on Windows 7?

They do not, with the same problem that my own application has - the window comes up and remains blank, with no actual errors.
by Mike Keller
Sat Aug 14, 2010 3:13 pm
Forum: JFreeChart
Topic: JFreeChart on Windows 7?
Replies: 8
Views: 8157

Re: JFreeChart on Windows 7?

It does use Swing components, but those are displaying. It's only the JFreeChart items I can't see.

And I am not getting any exceptions.
by Mike Keller
Fri Aug 13, 2010 7:59 pm
Forum: JFreeChart
Topic: JFreeChart on Windows 7?
Replies: 8
Views: 8157

Re: JFreeChart on Windows 7?

Whoops, I should have specified that in my first post. :oops:

I compiled it with JDK 1.6.0_14 (By compiled I mean into an executable JAR), and tried running it under both that and JRE 6 update 21, with the same results on both.
by Mike Keller
Thu Aug 12, 2010 5:25 pm
Forum: JFreeChart
Topic: JFreeChart on Windows 7?
Replies: 8
Views: 8157

JFreeChart on Windows 7?

I have heard of people successfully using the version of JFreeChart and JCommon that I have (1.0.13 and 1.0.16 respectively), but when I try running my application, the window where the chart panel should be is blank. It displays properly on Vista and XP. I am clearly doing something wrong, but I'm ...
by Mike Keller
Mon Aug 02, 2010 3:50 pm
Forum: JFreeChart
Topic: Runtime Exception: Uncompilable source code
Replies: 0
Views: 2291

Runtime Exception: Uncompilable source code

I am continuing my work on a jfreechat project. I have a pretty strange problem - this program I wrote last year worked, and now it doesn't. Unfortunately, in all my efforts to try to rectify things, I seem to have made it worse. Here is my current error. Uncompilable source code - package org.jfree...
by Mike Keller
Tue Jul 28, 2009 4:48 pm
Forum: JFreeChart
Topic: Graphing non-functions on a line graph?
Replies: 4
Views: 5121

Re: Graphing non-functions on a line graph?

That worked! Thanks for your help.
by Mike Keller
Tue Jul 28, 2009 3:57 pm
Forum: JFreeChart
Topic: Graphing non-functions on a line graph?
Replies: 4
Views: 5121

Re: Graphing non-functions on a line graph?

skunk wrote:What dataset implementation are you using? By default, XYSeries automatically sorts items as they are added.
Huh, I am using an XYSeries though, and I haven't changed how it sorts them. Yet it's still getting graphed according to the second part of that image.
by Mike Keller
Tue Jul 28, 2009 3:42 pm
Forum: JFreeChart
Topic: Graphing non-functions on a line graph?
Replies: 4
Views: 5121

Graphing non-functions on a line graph?

I am graphing points on an XY plot sorted by time. I would like a lines from the last point added to the current point added. I have an image, shown below: http://img195.imageshack.us/img195/1471/problemqvt.th.jpg I want to add the points numbered 1 through 5 in that order, and draw something like s...
by Mike Keller
Mon Jul 27, 2009 5:03 pm
Forum: JFreeChart
Topic: Changing the marks on a scatter plot?
Replies: 7
Views: 8087

Re: Changing the marks on a scatter plot?

Oh, that's simple. You thought of everything!