How can I retrieve the X range and store the max as an int

A discussion forum for JFreeChart (a 2D chart library for the Java platform).
Locked
Frank

How can I retrieve the X range and store the max as an int

Post by Frank » Mon Jan 13, 2003 7:41 pm

I see their is a method to retrieve the the range as a range object, how can I take the x value and store it as x_max_value for example.

Irv Thomae

Re: How can I retrieve the X range and store the max as an i

Post by Irv Thomae » Mon Jan 13, 2003 9:36 pm

In the source files, on path com/jrefinery/jfreechart/data, look up the file "DomainInfo.java" . This declares the "DomainInfo" interface, which although not the same as interface IntervalXYDataset, is customarily implemented by most classes that implement the latter.
I think the function is called GetDomainMaximum() , or something like that.

Irv Thomae

Frank

Re: How can I retrieve the X range and store the max as an i

Post by Frank » Mon Jan 13, 2003 10:44 pm

does anyone know how this can be implemented?

Locked