Class CfnDashboardPropsMixin.WaterfallChartSortConfigurationProperty
The sort configuration of a waterfall visual.
Inherited Members
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.WaterfallChartSortConfigurationProperty : CfnDashboardPropsMixin.IWaterfallChartSortConfigurationProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.WaterfallChartSortConfigurationProperty Implements CfnDashboardPropsMixin.IWaterfallChartSortConfigurationProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var waterfallChartSortConfigurationProperty = new WaterfallChartSortConfigurationProperty {
BreakdownItemsLimit = new ItemsLimitConfigurationProperty {
ItemsLimit = 123,
OtherCategories = "otherCategories"
},
CategorySort = new [] { new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
} }
};
Synopsis
Constructors
| WaterfallChartSortConfigurationProperty() | The sort configuration of a waterfall visual. |
Properties
| BreakdownItemsLimit | The limit on the number of bar groups that are displayed. |
| CategorySort | The sort configuration of the category fields. |
Constructors
WaterfallChartSortConfigurationProperty()
The sort configuration of a waterfall visual.
public WaterfallChartSortConfigurationProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins;
var waterfallChartSortConfigurationProperty = new WaterfallChartSortConfigurationProperty {
BreakdownItemsLimit = new ItemsLimitConfigurationProperty {
ItemsLimit = 123,
OtherCategories = "otherCategories"
},
CategorySort = new [] { new FieldSortOptionsProperty {
ColumnSort = new ColumnSortProperty {
AggregationFunction = new AggregationFunctionProperty {
AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
SimpleAttributeAggregation = "simpleAttributeAggregation",
ValueForMultipleValues = "valueForMultipleValues"
},
CategoricalAggregationFunction = "categoricalAggregationFunction",
DateAggregationFunction = "dateAggregationFunction",
NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
PercentileAggregation = new PercentileAggregationProperty {
PercentileValue = 123
},
SimpleNumericalAggregation = "simpleNumericalAggregation"
}
},
Direction = "direction",
SortBy = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
}
},
FieldSort = new FieldSortProperty {
Direction = "direction",
FieldId = "fieldId"
}
} }
};
Properties
BreakdownItemsLimit
The limit on the number of bar groups that are displayed.
public object? BreakdownItemsLimit { get; set; }
Property Value
Remarks
Type union: either IResolvable or CfnDashboardPropsMixin.IItemsLimitConfigurationProperty
CategorySort
The sort configuration of the category fields.
public object? CategorySort { get; set; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnDashboardPropsMixin.IFieldSortOptionsProperty)[]