org.rrd4j.graph.Rule 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;
import java.awt.BasicStroke;
import java.awt.Paint;
class Rule extends PlotElement {
final LegendText legend;
final BasicStroke stroke;
Rule(Paint color, LegendText legend, BasicStroke stroke) {
super(color);
this.legend = legend;
this.stroke = stroke;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy