GroupTransform
open class GroupTransform : TransformValue
Represents a group transform item.
-
The list of transform items to be applied for the property paths.
Declaration
Swift
final public var transformValues: TransformValueList? -
Adds new aggregate items to the GroupTransform.
Declaration
Swift
open func aggregate(_ items: AggregateValue...) -> GroupTransformParameters
rest_itemsThe transform items to be added.
Return Value
The group transform.
-
Adds new aggregate itemlist to the GroupTransform.
Declaration
Swift
open func aggregateList(items: AggregateValueList) -> GroupTransformParameters
itemsThe transform items to be added.
Return Value
The group transform.
-
Creates a GroupTransform item with the given properties.
Declaration
Swift
open class func groupBy(_ items: PropertyPath...) -> GroupTransformParameters
rest_itemsThe properties for grouping.
Return Value
The created item.
-
Creates a GroupTransform item with the given propertylist.
Declaration
Swift
open class func groupByList(items: PropertyPathList) -> GroupTransformParameters
itemsThe properties for grouping.
Return Value
The created item.
-
The list of property paths for the group transform item.
Declaration
Swift
public final var groupingPaths: PropertyPathList { get } -
Adds new transform items to the GroupTransform.
Declaration
Swift
open func transform(_ items: TransformValue...) -> GroupTransformParameters
rest_itemsThe transform items to be added.
Return Value
The group transform.
-
Adds new transform itemlist to the GroupTransform.
Declaration
Swift
open func transformList(items: TransformValueList) -> GroupTransformParameters
itemsThe transform items to be added.
Return Value
The group transform.