org.rrd4j.graph.ValueAxisSetting Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of rrd4j Show documentation
Show all versions of rrd4j Show documentation
A high performance data logging and graphing system for time series data.
package org.rrd4j.graph;
class ValueAxisSetting {
final double gridStep;
final int labelFactor;
ValueAxisSetting(double gridStep, int labelFactor) {
this.gridStep = gridStep;
this.labelFactor = labelFactor;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy