interface ComboChartSortConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.ComboChartSortConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.ComboChartSortConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.ComboChartSortConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnDashboard » ComboChartSortConfigurationProperty | 
The sort configuration of a ComboChartVisual .
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const comboChartSortConfigurationProperty: quicksight.CfnDashboard.ComboChartSortConfigurationProperty = {
  categoryItemsLimit: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  categorySort: [{
    columnSort: {
      direction: 'direction',
      sortBy: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      // the properties below are optional
      aggregationFunction: {
        categoricalAggregationFunction: 'categoricalAggregationFunction',
        dateAggregationFunction: 'dateAggregationFunction',
        numericalAggregationFunction: {
          percentileAggregation: {
            percentileValue: 123,
          },
          simpleNumericalAggregation: 'simpleNumericalAggregation',
        },
      },
    },
    fieldSort: {
      direction: 'direction',
      fieldId: 'fieldId',
    },
  }],
  colorItemsLimit: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  colorSort: [{
    columnSort: {
      direction: 'direction',
      sortBy: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      // the properties below are optional
      aggregationFunction: {
        categoricalAggregationFunction: 'categoricalAggregationFunction',
        dateAggregationFunction: 'dateAggregationFunction',
        numericalAggregationFunction: {
          percentileAggregation: {
            percentileValue: 123,
          },
          simpleNumericalAggregation: 'simpleNumericalAggregation',
        },
      },
    },
    fieldSort: {
      direction: 'direction',
      fieldId: 'fieldId',
    },
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| category | IResolvable | Items | The item limit configuration for the category field well of a combo chart. | 
| category | IResolvable | IResolvable | Field[] | The sort configuration of the category field well in a combo chart. | 
| color | IResolvable | Items | The item limit configuration of the color field well in a combo chart. | 
| color | IResolvable | IResolvable | Field[] | The sort configuration of the color field well in a combo chart. | 
categoryItemsLimit?
Type:
IResolvable | Items
(optional)
The item limit configuration for the category field well of a combo chart.
categorySort?
Type:
IResolvable | IResolvable | Field[]
(optional)
The sort configuration of the category field well in a combo chart.
colorItemsLimit?
Type:
IResolvable | Items
(optional)
The item limit configuration of the color field well in a combo chart.
colorSort?
Type:
IResolvable | IResolvable | Field[]
(optional)
The sort configuration of the color field well in a combo chart.

 .NET
 Java
 Python
 TypeScript