All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.rrd4j.graph.Line Maven / Gradle / Ivy

Go to download

A high performance data logging and graphing system for time series data.

There is a newer version: 3.9
Show newest version
package org.rrd4j.graph;

import java.awt.BasicStroke;
import java.awt.Paint;

class Line extends SourcedPlotElement {
    final BasicStroke stroke;

    Line(String srcName, Paint color, BasicStroke stroke, SourcedPlotElement parent) {
        super(srcName, color, parent);
        this.stroke = stroke;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy