Show / Hide Table of Contents

Class CfnAnalysis.WaterfallChartSortConfigurationProperty

The sort configuration of a waterfall visual.

Inheritance
System.Object
CfnAnalysis.WaterfallChartSortConfigurationProperty
Implements
CfnAnalysis.IWaterfallChartSortConfigurationProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class WaterfallChartSortConfigurationProperty : Object, CfnAnalysis.IWaterfallChartSortConfigurationProperty
Syntax (vb)
Public Class WaterfallChartSortConfigurationProperty
    Inherits Object
    Implements CfnAnalysis.IWaterfallChartSortConfigurationProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartsortconfiguration.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 waterfallChartSortConfigurationProperty = new WaterfallChartSortConfigurationProperty {
    BreakdownItemsLimit = 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"
        }
    } }
};

Synopsis

Constructors

WaterfallChartSortConfigurationProperty()

Properties

BreakdownItemsLimit

The limit on the number of bar groups that are displayed.

CategorySort

The sort configuration of the category fields.

Constructors

WaterfallChartSortConfigurationProperty()

public WaterfallChartSortConfigurationProperty()

Properties

BreakdownItemsLimit

The limit on the number of bar groups that are displayed.

public object BreakdownItemsLimit { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-waterfallchartsortconfiguration.html#cfn-quicksight-analysis-waterfallchartsortconfiguration-breakdownitemslimit

CategorySort

The sort configuration of the category fields.

public object CategorySort { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnAnalysis.IWaterfallChartSortConfigurationProperty
Back to top Generated by DocFX