Search found 7 matches

by Sir Henry
Tue Feb 13, 2007 3:28 pm
Forum: JFreeChart
Topic: Java Swing and JFreeChart
Replies: 3
Views: 4380

I guess you are drawing the graph in a loop, perhaps only to test it. This may prevent the event dispatching thread from updating the rest of your UI. In real life you will have an external event that causes the graph to update. The time period between the events should give enough time for an UI up...
by Sir Henry
Tue Feb 13, 2007 9:05 am
Forum: JFreeChart
Topic: Zooming rectangle gets distorted by plot update
Replies: 3
Views: 3857

Thanks for the link. I'll try it out and report the outcome. :)
by Sir Henry
Mon Feb 12, 2007 4:18 pm
Forum: JFreeChart
Topic: Zooming rectangle gets distorted by plot update
Replies: 3
Views: 3857

Zooming rectangle gets distorted by plot update

I remember having read a thread on the subject but I cannot find it anymore... When the user drags a zooming rectangle on an XYPlot and the plot gets an update while the user is still dragging, the rectangle gets distorted in a strange way. It is partly redrawn and changes its shape to a sort of pol...
by Sir Henry
Thu Jul 13, 2006 2:44 pm
Forum: JFreeChart
Topic: Crosshairs, tracelines, markers
Replies: 5
Views: 10427

Thanks again for your suggestions. :)

However, I do not like the idea of copying the entire ChartPanel and adapting it to my needs. I have decided to accept the drawback of disappearing trace lines for the time being. 8)
by Sir Henry
Tue Jul 11, 2006 7:57 am
Forum: JFreeChart
Topic: Crosshairs, tracelines, markers
Replies: 5
Views: 10427

Thanks a lot for your response, Gustavo, I appreciate it very much. While I was waiting for a reply I moved into the same direction as you described. Unfortunately, all trace line code is private, so I have to copy much of it into my derived classes. :cry: There is another drawback of using trace li...
by Sir Henry
Fri Jul 07, 2006 4:39 pm
Forum: JFreeChart
Topic: Urgent Help JFreeChart
Replies: 4
Views: 5117

Add a line:

Code: Select all

developer.setConfused(true);
:D (sorry I could not resist) :D
by Sir Henry
Fri Jul 07, 2006 3:03 pm
Forum: JFreeChart
Topic: Crosshairs, tracelines, markers
Replies: 5
Views: 10427

Crosshairs, tracelines, markers

Hi @ all, I seem to be in some confusion about crosshairs, trace lines, and markers. :roll: I'll try to describe what I want to achieve: I have a simple 2D x/y line plot. I want a crosshair cursor to be continuously updated during mouse movements, with the x crosshair following the mouse and the y c...