Class AbstractAxisData<Abscissa,Ordinate>
- java.lang.Object
-
- com.orchestranetworks.addon.dqid.chart.Data
-
- com.orchestranetworks.addon.dqid.chart.AbstractAxisData<Abscissa,Ordinate>
-
- Direct Known Subclasses:
AxisData,CategoryBarChartData
public abstract class AbstractAxisData<Abscissa,Ordinate> extends Data
Represents the data for a line chart, a bar chart or a category bar chart.- See Also:
CategoryBarChartData,AxisData
-
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidsetAbscissaLabel(com.onwbp.base.text.UserMessage abscissaLabel)Sets an optional label for the abscissa (the x axis).voidsetOrdinateLabel(com.onwbp.base.text.UserMessage ordinateLabel)Sets an optional label for the ordinate (the y axis).
-
-
-
Method Detail
-
setAbscissaLabel
public final void setAbscissaLabel(com.onwbp.base.text.UserMessage abscissaLabel)
Sets an optional label for the abscissa (the x axis).Note: The option
SimpleAxisChartOptions.showAxisLabels(boolean)must be set totruefor the label to be visible.
Default value:None.
- See Also:
LineChartOptions,BarChartOptions
-
setOrdinateLabel
public final void setOrdinateLabel(com.onwbp.base.text.UserMessage ordinateLabel)
Sets an optional label for the ordinate (the y axis).Note: The option
SimpleAxisChartOptions.showAxisLabels(boolean)must be set totruefor the label to be visible.
Default value:None.- See Also:
LineChartOptions,BarChartOptions
-
-