| Package | Description |
|---|---|
| org.rrd4j.graph | RRD4J graph capabilities. |
| Modifier and Type | Class and Description |
|---|---|
(package private) class | AreaRepresents an area plot element in RRD graphs. |
class | ConstantAreaRepresents an area plot element with a constant value in RRD graphs. |
class | ConstantLineRepresents a line plot element with a constant value in RRD graphs. |
(package private) class | LineRepresents a line plot element in RRD graphs. |
(package private) class | StackRepresents a stacked plot element in RRD graphs. |
| Modifier and Type | Field and Description |
|---|---|
(package private) SourcedPlotElement | SourcedPlotElement.parentThe parent element, or null. |
| Constructor and Description |
|---|
Area(String srcName,
Paint color,
SourcedPlotElement parent)Create a new Area plot element. |
ConstantArea(double value,
Paint color,
SourcedPlotElement parent)Creates a constant area with the specified value, color, and parent. |
ConstantLine(double value,
Paint color,
BasicStroke stroke,
SourcedPlotElement parent)Creates a constant line with the specified value, color, stroke, and parent. |
Line(String srcName,
Paint color,
BasicStroke stroke,
SourcedPlotElement parent) |
SourcedPlotElement(String srcName,
Paint color,
SourcedPlotElement parent)Create a SourcedPlotElement with a parent. |
Stack(SourcedPlotElement parent,
String srcName,
Paint color)Creates a stacked plot element with the specified parent, source name, and color. |