Klasse LineStyle
java.lang.Object
com.inet.report.chart.plot.ChartStyle
com.inet.report.chart.plot.LineStyle
- Alle implementierten Schnittstellen:
Serializable
This class defines the different styles of the line chart.
This style belongs to the plot
LinePlot.- Seit:
- 8.0
- Siehe auch:
-
Feldübersicht
FelderModifikator und TypFeldBeschreibungstatic final LineStyleThe simple line chart style.static final LineStyleThe line chart style with marker.static final LineStyleThe line chart style with marker and percent values.static final LineStyleThe line chart style with marker and stacked values.static final LineStyleThe simple line chart style with percent values.static final LineStyleThe simple line chart style with stacked values. -
Methodenübersicht
Modifikator und TypMethodeBeschreibungbooleangetAllowedDatasets(Chart2 chart) Returns the list of dataset supported by this chart style.Creates a new line plot and initializes the plot with default settings.booleanReturns this line style has shapes on the lines.booleanReturns this is a percent style with or without marker.booleanReturns this is a simple style with or without marker.booleanReturns this is a stacked style with or without marker.Von Klasse geerbte Methoden ChartStyle
hashCode, toString
-
Felddetails
-
LINE
The simple line chart style. -
LINE_STACKED
The simple line chart style with stacked values. -
LINE_PERCENT
The simple line chart style with percent values. -
LINE_MARKER
The line chart style with marker. -
LINE_MARKER_STACKED
The line chart style with marker and stacked values. -
LINE_MARKER_PERCENT
The line chart style with marker and percent values.
-
-
Methodendetails
-
equals
- Setzt außer Kraft:
equalsin KlasseChartStyle
-
getDefaultPlot
Creates a new line plot and initializes the plot with default settings.- Angegeben von:
getDefaultPlotin KlasseChartStyle- Gibt zurück:
- the plot of type
LinePlot. - Seit:
- 8.0
- Siehe auch:
-
getAllowedDatasets
Returns the list of dataset supported by this chart style.- Angegeben von:
getAllowedDatasetsin KlasseChartStyle- Parameter:
chart- the chart- Gibt zurück:
- the list of datasets.
- Siehe auch:
-
isSimpleLine
public boolean isSimpleLine()Returns this is a simple style with or without marker.- Gibt zurück:
- is a simple style.
- Seit:
- 8.0
-
isStackedLine
public boolean isStackedLine()Returns this is a stacked style with or without marker.- Gibt zurück:
- is a simple style.
- Seit:
- 8.0
-
isPercentLine
public boolean isPercentLine()Returns this is a percent style with or without marker.- Gibt zurück:
- is a percent style.
- Seit:
- 8.0
-
isMarkerLine
public boolean isMarkerLine()Returns this line style has shapes on the lines.- Gibt zurück:
- has markers.
- Seit:
- 8.0
-