
com.frontangle.ichart.chart.DataRange Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of iceberg-charts Show documentation
Show all versions of iceberg-charts Show documentation
A Java charting library using Java2D
The newest version!
package com.frontangle.ichart.chart;
/**
* Describes a data range, ie a pair of values.
*
* @author Oliver Watkins
*/
public class DataRange {
@Override
public String toString() {
return "DataRange [min=" + min + ", max=" + max + "]";
}
double min, max;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy