Search found 6 matches

by aselaneli
Tue Feb 14, 2012 11:45 am
Forum: JFreeChart
Topic: Bug in unlimited zoom in chart...
Replies: 1
Views: 3697

Bug in unlimited zoom in chart...

Hi, This post is intended for Mr. David Gilbert, the genius behind JfreeCharts. I was testing the zooming functionality of the trends & if I keep on zooming when there's NO data left to zoom, it throws the following exception. Exception in thread "AWT-EventQueue-1" java.lang.IllegalArgumentException...
by aselaneli
Tue Feb 14, 2012 11:33 am
Forum: JFreeChart
Topic: Distributing axes evenly...
Replies: 1
Views: 2513

Distributing axes evenly...

Hi all, I have a question regarding distributing axes evenly to both sides of the trend. Lets say that I have 4 Y axes & the default behavior is that the primary Y axis is located in the left-hand side of the chart & the other 3 are located in the right-hand side of the chart. Is there a way to spec...
by aselaneli
Tue Jan 24, 2012 11:24 am
Forum: JFreeChart
Topic: ValueAxis dragging question...
Replies: 0
Views: 2721

ValueAxis dragging question...

Hi all, I managed to drag a ValueAxis & set new range values while dragging it. I used setRange(double lower, double upper) for this one. (the post http://www.jfree.org/forum/viewtopic.php?f=3&t=109585 will put you into the correct context). The image related to that post is in this link. http://www...
by aselaneli
Mon Jan 02, 2012 11:22 am
Forum: JFreeChart
Topic: Number of ticks between upper & lower ranges...
Replies: 1
Views: 3566

Number of ticks between upper & lower ranges...

Hi all, I need to get the number of ticks between the upper & lower ranges of an axis. Lets say that my lower range is 0 & the upper range is 100. And the values are shown in gaps of 5. So when I ask for the number of tick count, it should return 21 (including 0 & 100) Is there a method which serves...
by aselaneli
Thu Dec 22, 2011 12:28 pm
Forum: JFreeChart
Topic: Scaling the "Y" axis upon Mouse dragging...
Replies: 4
Views: 7431

Re: Scaling the "Y" axis upon Mouse dragging...

Hi Martin, Thank you so much for your reply & it helped me a lot. However there's one more small problem that I'm facing. When I click & drag on the axis, I need to get the VALUE of the Y axis where I clicked. (it's not the coordinates) It's as follows. If I click near "8" & start dragging up or dow...
by aselaneli
Wed Dec 21, 2011 11:55 am
Forum: JFreeChart
Topic: Scaling the "Y" axis upon Mouse dragging...
Replies: 4
Views: 7431

Scaling the "Y" axis upon Mouse dragging...

Hello everyone, I'm fairly new to JFreeCharts. I was given a task to auto-scale the graph when the Y axis is dragged up or down. After going through some online resources, I was able to develop a simple test class along with all necessary mouse listeners. However I couldn't find an online resource w...