How to draw a graph with fixed Y-axis and varying X-axis....Is it Possible?

I can draw graph with given dataset.But the Scaling of the graph is high when a single value is high.So is there any solution to scale down the graph to a particular value.
[179 byte] By [SwethaKrisha] at [2007-11-27 8:00:14]
# 1
Ignore values outside your chosen range.
sabre150a at 2007-7-12 19:42:10 > top of Java-index,Java Essentials,Java Programming...
# 2
SwethaKrish,Ignoring values outside of a given range often defeats the purpose of drawing the graph... as those are commonly the values that the folks producing the graph are really interested in.A generic graphing tool most keep this in mind.Keith.
corlettka at 2007-7-12 19:42:10 > top of Java-index,Java Essentials,Java Programming...
# 3

> I can draw graph with given dataset.But the Scaling

> of the graph is high when a single value is high.So

> is there any solution to scale down the graph to a

> particular value.

This sounds very much like you are using JFreeChart. If so, you might be better off asking in the JFreeChart forum http://www.jfree.org/phpBB2/viewforum.php?f=3 ...

thomas.behra at 2007-7-12 19:42:10 > top of Java-index,Java Essentials,Java Programming...
# 4

> > I can draw graph with given dataset.But the

> Scaling

> > of the graph is high when a single value is

> high.So

> > is there any solution to scale down the graph to a

> > particular value.

>

> This sounds very much like you are using JFreeChart.

> If so, you might be better off asking in the

> JFreeChart forum

> http://www.jfree.org/phpBB2/viewforum.php?f=3 ...

I read this as not using JFreeChart! If using JFreeChart than one can just set the range of values to be plotted!

sabre150a at 2007-7-12 19:42:10 > top of Java-index,Java Essentials,Java Programming...