Class ChartMeasure.PlotParameters
java.lang.Object
org.graphstream.algorithm.measure.ChartMeasure.PlotParameters
- Enclosing class:
- ChartMeasure
public static class ChartMeasure.PlotParameters extends Object
Parameters defining how to plot measures.
-
Field Summary
Fields Modifier and Type Field Description int
height
Dimensions of the plot.org.jfree.chart.plot.PlotOrientation
orientation
Orientation of the plot.ChartMeasure.PlotOutputType
outputType
Defines if plotting is rendered on the screen or saved on a file.String
path
If rendering is saved on a file, this defines the path of this file.boolean
showLegend
True if name of measures should be displayed on the plot.String
title
Title of the plot.ChartMeasure.PlotType
type
Type of plot.int
width
Dimensions of the plot.String
xAxisLabel
Label of the x axis.String
yAxisLabel
Label of the y axis. -
Constructor Summary
Constructors Constructor Description PlotParameters()
-
Method Summary
-
Field Details
-
type
Type of plot. This type is linked to the type of measure : LINE needs series measures for example. -
outputType
Defines if plotting is rendered on the screen or saved on a file. -
path
If rendering is saved on a file, this defines the path of this file. -
title
Title of the plot. -
xAxisLabel
Label of the x axis. -
yAxisLabel
Label of the y axis. -
orientation
public org.jfree.chart.plot.PlotOrientation orientationOrientation of the plot. -
showLegend
public boolean showLegendTrue if name of measures should be displayed on the plot. -
width
public int widthDimensions of the plot. -
height
public int heightDimensions of the plot.
-
-
Constructor Details
-
PlotParameters
public PlotParameters()
-