Class CfnTemplate.ComboChartSortConfigurationProperty
The sort configuration of a ComboChartVisual .
Inheritance
System.Object
    CfnTemplate.ComboChartSortConfigurationProperty
  Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class ComboChartSortConfigurationProperty : Object, CfnTemplate.IComboChartSortConfigurationPropertySyntax (vb)
Public Class ComboChartSortConfigurationProperty
    Inherits Object
    Implements CfnTemplate.IComboChartSortConfigurationPropertyRemarks
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.AWS.QuickSight;
var comboChartSortConfigurationProperty = new ComboChartSortConfigurationProperty {
    CategoryItemsLimit = new ItemsLimitConfigurationProperty {
        ItemsLimit = 123,
        OtherCategories = "otherCategories"
    },
    CategorySort = new [] { new FieldSortOptionsProperty {
        ColumnSort = new ColumnSortProperty {
            Direction = "direction",
            SortBy = new ColumnIdentifierProperty {
                ColumnName = "columnName",
                DataSetIdentifier = "dataSetIdentifier"
            },
            // the properties below are optional
            AggregationFunction = new AggregationFunctionProperty {
                CategoricalAggregationFunction = "categoricalAggregationFunction",
                DateAggregationFunction = "dateAggregationFunction",
                NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                    PercentileAggregation = new PercentileAggregationProperty {
                        PercentileValue = 123
                    },
                    SimpleNumericalAggregation = "simpleNumericalAggregation"
                }
            }
        },
        FieldSort = new FieldSortProperty {
            Direction = "direction",
            FieldId = "fieldId"
        }
    } },
    ColorItemsLimit = new ItemsLimitConfigurationProperty {
        ItemsLimit = 123,
        OtherCategories = "otherCategories"
    },
    ColorSort = new [] { new FieldSortOptionsProperty {
        ColumnSort = new ColumnSortProperty {
            Direction = "direction",
            SortBy = new ColumnIdentifierProperty {
                ColumnName = "columnName",
                DataSetIdentifier = "dataSetIdentifier"
            },
            // the properties below are optional
            AggregationFunction = new AggregationFunctionProperty {
                CategoricalAggregationFunction = "categoricalAggregationFunction",
                DateAggregationFunction = "dateAggregationFunction",
                NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                    PercentileAggregation = new PercentileAggregationProperty {
                        PercentileValue = 123
                    },
                    SimpleNumericalAggregation = "simpleNumericalAggregation"
                }
            }
        },
        FieldSort = new FieldSortProperty {
            Direction = "direction",
            FieldId = "fieldId"
        }
    } }
};Synopsis
Constructors
| ComboChartSortConfigurationProperty() | 
Properties
| CategoryItemsLimit | The item limit configuration for the category field well of a combo chart. | 
| CategorySort | The sort configuration of the category field well in a combo chart. | 
| ColorItemsLimit | The item limit configuration of the color field well in a combo chart. | 
| ColorSort | The sort configuration of the color field well in a combo chart. | 
Constructors
ComboChartSortConfigurationProperty()
public ComboChartSortConfigurationProperty()Properties
CategoryItemsLimit
The item limit configuration for the category field well of a combo chart.
public object CategoryItemsLimit { get; set; }Property Value
System.Object
Remarks
CategorySort
The sort configuration of the category field well in a combo chart.
public object CategorySort { get; set; }Property Value
System.Object
Remarks
ColorItemsLimit
The item limit configuration of the color field well in a combo chart.
public object ColorItemsLimit { get; set; }Property Value
System.Object
Remarks
ColorSort
The sort configuration of the color field well in a combo chart.
public object ColorSort { get; set; }Property Value
System.Object