Versions Compared
Version | Old Version 1 | New Version 2 |
---|---|---|
Changes made by | ||
Saved on |
Key
- This line was added.
- This line was removed.
- Formatting was changed.
Class graphomate.ui.tables.AbstractColumn
extends sap.ui.core.Element
Quick Start
This abstract base class is not meant to be instantiated. It provides common attributes for the column classes graphomate.ui.tables.DataColumn and graphomate.ui.tables.DeviationColumn.
Constructor Details
new graphomate.ui.tables.AbstractColumn(id?:string, settings?:object)
Throws an error when instantiated. Inheritates the following settings to its subclasses:
Properties:
- title : string (default: "column")
- visible : boolean (default: true)
- width : graphomate.ui.types.UnsignedInteger (default: 0)
Aggregations:
- extendedNumberFormat : graphomate.ui.ExtendedNumberFormat (default: null)
Property Details
Each property "sampleProperty" can be set using the related setter "setSampleProperty". Each setter expects a valid value for the related property as input parameter and throws an exception for invalid values. It returns the "this context" for method chaining. Each property "sampleProperty" can also be gotten using the related getter method "getSampleProperty". It expects no input parameters and returns the current value of the related property. Each property that represents or partially contains indices excepts a 0 based index.
The following properties are available:
Property Name | Type | Description |
---|---|---|
label | string | This string will be used to label the deviation chart, if one of the following chart properties is enabled: "showAxisLabelsLeft", "showAxisLabelsRight", "showSeriesLabelsLeft", "showSeriesLabelsRight". |
type | graphomate.ui.enums.DeviationType | Specifies whether the deviation chart should display an absolute or relative deviation. |
baseSeriesIndex | graphomate.ui.types.UnsignedInteger | Sets the index of the chart's data series that should be used as a base value for calculating the deviation. Use 0 for series1, 1 for series2 and so on. The base of the deviation is the value that gets subtracted from the measure to calculate the deviation value. |
measureSeriesIndex | graphomate.ui.types.UnsignedInteger | Sets the index of the chart's data series that should be used as a measure value for calculating the deviation. Use 0 for series1, 1 for series2 and so on. The measure of the deviation is the value from which the base gets subtracted to calculate the deviation value. |