Show / Hide Table of Contents

Interface CfnTemplate.IComboChartSortConfigurationProperty

The sort configuration of a ComboChartVisual .

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public interface IComboChartSortConfigurationProperty
Syntax (vb)
Public Interface IComboChartSortConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-combochartsortconfiguration.html

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

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.

Properties

CategoryItemsLimit

The item limit configuration for the category field well of a combo chart.

virtual object CategoryItemsLimit { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-combochartsortconfiguration.html#cfn-quicksight-template-combochartsortconfiguration-categoryitemslimit

CategorySort

The sort configuration of the category field well in a combo chart.

virtual object CategorySort { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-combochartsortconfiguration.html#cfn-quicksight-template-combochartsortconfiguration-categorysort

ColorItemsLimit

The item limit configuration of the color field well in a combo chart.

virtual object ColorItemsLimit { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-combochartsortconfiguration.html#cfn-quicksight-template-combochartsortconfiguration-coloritemslimit

ColorSort

The sort configuration of the color field well in a combo chart.

virtual object ColorSort { get; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-combochartsortconfiguration.html#cfn-quicksight-template-combochartsortconfiguration-colorsort

Back to top Generated by DocFX