| Package | Description |
|---|---|
| org.rrd4j.graph |
RRD4J graph capabilities.
|
| Modifier and Type | Class and Description |
|---|---|
(package private) class |
Area
Represents an area plot element in RRD graphs.
|
class |
ConstantArea
Represents an area plot element with a constant value in RRD graphs.
|
class |
ConstantLine
Represents a line plot element with a constant value in RRD graphs.
|
(package private) class |
Line
Represents a line plot element in RRD graphs.
|
(package private) class |
Stack
Represents a stacked plot element in RRD graphs.
|
| Modifier and Type | Field and Description |
|---|---|
(package private) SourcedPlotElement |
SourcedPlotElement.parent |
| Constructor and Description |
|---|
Area(String srcName,
Paint color,
SourcedPlotElement parent) |
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) |
Stack(SourcedPlotElement parent,
String srcName,
Paint color)
Creates a stacked plot element with the specified parent, source name, and color.
|