Show / Hide Table of Contents

Class CfnDashboard.FunnelChartSortConfigurationProperty

The sort configuration of a FunnelChartVisual .

Inheritance
object
CfnDashboard.FunnelChartSortConfigurationProperty
Implements
CfnDashboard.IFunnelChartSortConfigurationProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.FunnelChartSortConfigurationProperty : CfnDashboard.IFunnelChartSortConfigurationProperty
Syntax (vb)
Public Class CfnDashboard.FunnelChartSortConfigurationProperty Implements CfnDashboard.IFunnelChartSortConfigurationProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.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 funnelChartSortConfigurationProperty = new FunnelChartSortConfigurationProperty {
                 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 {
                             AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                                 SimpleAttributeAggregation = "simpleAttributeAggregation",
                                 ValueForMultipleValues = "valueForMultipleValues"
                             },
                             CategoricalAggregationFunction = "categoricalAggregationFunction",
                             DateAggregationFunction = "dateAggregationFunction",
                             NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                                 PercentileAggregation = new PercentileAggregationProperty {
                                     PercentileValue = 123
                                 },
                                 SimpleNumericalAggregation = "simpleNumericalAggregation"
                             }
                         }
                     },
                     FieldSort = new FieldSortProperty {
                         Direction = "direction",
                         FieldId = "fieldId"
                     }
                 } }
             };

Synopsis

Constructors

FunnelChartSortConfigurationProperty()

The sort configuration of a FunnelChartVisual .

Properties

CategoryItemsLimit

The limit on the number of categories displayed.

CategorySort

The sort configuration of the category fields.

Constructors

FunnelChartSortConfigurationProperty()

The sort configuration of a FunnelChartVisual .

public FunnelChartSortConfigurationProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.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 funnelChartSortConfigurationProperty = new FunnelChartSortConfigurationProperty {
                 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 {
                             AttributeAggregationFunction = new AttributeAggregationFunctionProperty {
                                 SimpleAttributeAggregation = "simpleAttributeAggregation",
                                 ValueForMultipleValues = "valueForMultipleValues"
                             },
                             CategoricalAggregationFunction = "categoricalAggregationFunction",
                             DateAggregationFunction = "dateAggregationFunction",
                             NumericalAggregationFunction = new NumericalAggregationFunctionProperty {
                                 PercentileAggregation = new PercentileAggregationProperty {
                                     PercentileValue = 123
                                 },
                                 SimpleNumericalAggregation = "simpleNumericalAggregation"
                             }
                         }
                     },
                     FieldSort = new FieldSortProperty {
                         Direction = "direction",
                         FieldId = "fieldId"
                     }
                 } }
             };

Properties

CategoryItemsLimit

The limit on the number of categories displayed.

public object? CategoryItemsLimit { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.html#cfn-quicksight-dashboard-funnelchartsortconfiguration-categoryitemslimit

CategorySort

The sort configuration of the category fields.

public object? CategorySort { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-funnelchartsortconfiguration.html#cfn-quicksight-dashboard-funnelchartsortconfiguration-categorysort

Implements

CfnDashboard.IFunnelChartSortConfigurationProperty
Back to top Generated by DocFX