Schnittstelle GanttDataset
- Alle Superschnittstellen:
BaseDataset, Serializable
- Alle bekannten Implementierungsklassen:
GanttForEachRecordDataset, GanttOneGroupDataset, GanttTwoGroupsDataset
An interface that is implemented by data sets that have start, end and progress fields.
For more information see the implementors of this interface.
- Seit:
- 8.0
- Siehe auch:
-
Feldübersicht
Von Schnittstelle geerbte Felder BaseDataset
TOKEN_DATASET -
Methodenübersicht
Modifikator und TypMethodeBeschreibungReturns the data field which indicates the end position of each interval bar.Returns the data field which indicates the progress status of each interval bar.Returns the data field which indicates the start position of each interval bar.voidsetEndField(int summaryOperation, Field field, Field field2nd, int nth) Sets the data field which indicates the end position of each interval bar.voidsetProgressField(int summaryOperation, Field field, Field field2nd, int nth) Sets the data field which indicates the progress status of each interval bar.voidsetStartField(int summaryOperation, Field field, Field field2nd, int nth) Sets the data field which indicates the start position of each interval bar.Von Schnittstelle geerbte Methoden BaseDataset
getChart, getDataField, getDataFields, getLabelProvider, getReferencedObject, updateReferences, verify
-
Methodendetails
-
getStartField
SummaryField getStartField()Returns the data field which indicates the start position of each interval bar.- Gibt zurück:
- the data field of type
SummaryFieldornullif this field was not initialized. - Seit:
- 8.0
- Siehe auch:
-
getEndField
SummaryField getEndField()Returns the data field which indicates the end position of each interval bar.- Gibt zurück:
- the data field of type
SummaryFieldornullif this field was not initialized. - Seit:
- 8.0
- Siehe auch:
-
getProgressField
SummaryField getProgressField()Returns the data field which indicates the progress status of each interval bar.- Gibt zurück:
- the data field of type
SummaryFieldornullif this field was not initialized. - Seit:
- 8.0
- Siehe auch:
-
setStartField
Sets the data field which indicates the start position of each interval bar. Creates a newSummaryFieldwith these parameters.
For more information about the supported value types of the field and about using parameters 'field2nd' and 'nth' seeSummaryField.
Note: this data field supports only summary operations with date result values.- Parameter:
summaryOperation- the summary operation. This supports operations with date result values onlyfield- the data fieldfield2nd- the second data field, this field can currently be ignored.nth- the nth parameter, used for example by summary operationSummaryField.NTH_LARGEST- Löst aus:
IllegalArgumentException- if the required second field or field arenullor have an unsupported value type.IllegalArgumentException- if "nth" is less than zero.- Seit:
- 8.0
- Siehe auch:
-
setEndField
Sets the data field which indicates the end position of each interval bar. Creates a newSummaryFieldwith these parameters.
For more information about the supported value types of the field and about using parameters 'field2nd' and 'nth' seeSummaryField.
Note: this data field supports only summary operations with date result values.- Parameter:
summaryOperation- the summary operation. This supports operations with date result values onlyfield- the data fieldfield2nd- the second data field, this field can currently be ignored.nth- the nth parameter, used for example by summary operationSummaryField.NTH_LARGEST- Löst aus:
IllegalArgumentException- if the required second field or field arenullor have an unsupported value type.IllegalArgumentException- if "nth" is less than zero.- Seit:
- 8.0
- Siehe auch:
-
setProgressField
Sets the data field which indicates the progress status of each interval bar. This field is optional and supports only summary operations with number as result values. Creates a newSummaryFieldwith these parameters.
For more information about the supported value types of the field and about using parameters 'field2nd' and 'nth' seeSummaryField.
Note: this data field supports only summary operations with number result values.- Parameter:
summaryOperation- the summary operation. This supports operations with number result values onlyfield- the data fieldfield2nd- the second data field, this field can currently be ignored.nth- the nth parameter, used for example by summary operationSummaryField.NTH_LARGEST- Löst aus:
IllegalArgumentException- if the required second field or field arenullor have an unsupported value type.IllegalArgumentException- if "nth" is less than zero.- Seit:
- 8.0
- Siehe auch:
-