Interface TethysUIBarChart.TethysUIBarChartData
- All Known Implementing Classes:
TethysUICoreBarChart.TethysUICoreBarChartData
- Enclosing interface:
TethysUIBarChart
public static interface TethysUIBarChart.TethysUIBarChartData
BarChart Data.
-
Method Summary
Modifier and TypeMethodDescriptioncreateSeries(String pName) Add a series.getTitle()Obtain the title.Obtain the XAxis label.Obtain the YAxis label.Obtain the barChart series.setXAxisLabel(String pLabel) Set the XAxis label.setYAxisLabel(String pLabel) Set the YAxis label.
-
Method Details
-
setXAxisLabel
Set the XAxis label.- Parameters:
pLabel- the label.- Returns:
- the data
-
setYAxisLabel
Set the YAxis label.- Parameters:
pLabel- the label.- Returns:
- the data
-
getTitle
String getTitle()Obtain the title.- Returns:
- the title.
-
getXAxisLabel
String getXAxisLabel()Obtain the XAxis label.- Returns:
- the label.
-
getYAxisLabel
String getYAxisLabel()Obtain the YAxis label.- Returns:
- the label.
-
createSeries
Add a series.- Parameters:
pName- the name- Returns:
- the series
-
seriesIterator
Iterator<TethysUIBarChart.TethysUIBarChartSeries> seriesIterator()Obtain the barChart series.- Returns:
- the iterator
-