Search found 10 matches

by cassidyh
Wed Sep 28, 2005 3:32 pm
Forum: JFreeChart
Topic: custom tooltip on TimeSeriesChart
Replies: 0
Views: 1997

custom tooltip on TimeSeriesChart

Hi If anyone would have suggestions on how I can customize my tooltip text on my timeseries chart, it would be great. I am now showing the date (x-axis info) and the y-axis number. Instead I want to show an event number and the y-axis number. The event number is kind of like a counter. How do I pass...
by cassidyh
Tue Jul 19, 2005 12:39 pm
Forum: JFreeChart
Topic: Urgent question about the compass
Replies: 6
Views: 5470

two needles in compass

ALl you have to do is declare a new dataset, and than call the plot. dataset1 = new DefaultValueDataset(new Double(45.0)); dataset2 = new DefaultValueDataset(new Double(60.0)); plot = new CompassPlot(); plot.addData(dataset1) ; plot.addData(dataset2); What I don't know is how to change the needle to...
by cassidyh
Mon Jul 18, 2005 2:35 pm
Forum: JFreeChart
Topic: customizing compass plot with errors
Replies: 0
Views: 1886

customizing compass plot with errors

Does anyone know how to put a shaded area on both sides of the compass needle? For example, if I want to display 45 degrees and want to put a 10% error slice on both sides. How would I do that.
I really need help with this. Somebody please help me!!!....
thanks a lot in advance
c
by cassidyh
Fri Jul 15, 2005 8:13 pm
Forum: JFreeChart
Topic: Compass Plot
Replies: 0
Views: 1947

Compass Plot

Hi I am trying to implement a compass where I want to be able to point the needle to changing directions. However it is not clear to me how the compass determines where 0 is. I changed the demo degree to 0 and it points to South, which should be 180 from what I understand. Could someone please shine...
by cassidyh
Fri Jul 01, 2005 2:50 pm
Forum: JFreeChart
Topic: 100% CPU usage problem
Replies: 5
Views: 5201

CPU

Thanks a lot,
I tried the setnotify, and it seems to be working fine. I also had to make sure to call the series.clear() before updating the chart
by cassidyh
Fri Jul 01, 2005 12:50 pm
Forum: JFreeChart
Topic: 100% CPU usage problem
Replies: 5
Views: 5201

CPU time issue

Hi I found the bug that caused my bottleneck. I was processing all data in my incoming, including 0s. SO everytime I added data to my series, I also added zeros. Once I put in a simple if(data!=0){ series.add(data)} all my problems have also disappeared. You might want to also check for something so...
by cassidyh
Thu Jun 30, 2005 12:40 pm
Forum: JFreeChart
Topic: 100% CPU usage problem
Replies: 5
Views: 5201

100% CPU usage problem

HI,
I am trying to continuously update 4 XYBarcharts within a panel, but as soon as I start the plotting, my CPU usage jumps to 100%. AM I overlooking something?Anyone with any suggestions, I would appreciate any help
Cassidy
by cassidyh
Tue Jun 28, 2005 3:59 pm
Forum: JCommon
Topic: NoClassDefFoundError
Replies: 11
Views: 38898

HOw do write that into the manifest file? I am not so sure about how to do it, but that would be great. I appreciate any help, because my way works, but it is by far not very effective at all.
by cassidyh
Tue Jun 28, 2005 3:44 pm
Forum: JCommon
Topic: NoClassDefFoundError
Replies: 11
Views: 38898

eclipse problems

I actually had to extract all source files from Jcommon.jar as well as from jfreechart.jar and add it to my project before I packed it into a self-executable jar file. That is the only way to make the code portable. It is also ridiculous...I mean, what's the point of using a jar file for classes, if...
by cassidyh
Mon Jun 27, 2005 2:43 pm
Forum: JCommon
Topic: NoClassDefFoundError
Replies: 11
Views: 38898

I am having the same problem with running my app from Eclipse is fine, but when I create a jar, nothing happens. SOmebody please help