Package alluxio.stress.graph
Class LineGraph
- java.lang.Object
-
- alluxio.stress.graph.Graph
-
- alluxio.stress.graph.LineGraph
-
public class LineGraph extends Graph
A line graph representation.
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classLineGraph.DataThis represents the data for a line graph.
-
Constructor Summary
Constructors Constructor Description LineGraph(java.lang.String title, java.util.List<java.lang.String> subTitle, java.lang.String xTitle, java.lang.String yTitle)Creates an instance.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddDataSeries(java.lang.String series, LineGraph.Data data)
-
-
-
Constructor Detail
-
LineGraph
public LineGraph(java.lang.String title, java.util.List<java.lang.String> subTitle, java.lang.String xTitle, java.lang.String yTitle)Creates an instance.- Parameters:
title- the titlesubTitle- the lines in the sub titlexTitle- the title of the x-axisyTitle- the title of the y-axis
-
-
Method Detail
-
addDataSeries
public void addDataSeries(java.lang.String series, LineGraph.Data data)- Parameters:
series- the series namedata- the series data to add
-
-