aws-cdk-lib.aws_quicksight.CfnDashboard.ComboChartSortConfigurationProperty

interface ComboChartSortConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.ComboChartSortConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_ComboChartSortConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.ComboChartSortConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.ComboChartSortConfigurationProperty
TypeScript aws-cdk-lib » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
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

NameTypeDescription
categoryItemsLimit?IResolvable | ItemsLimitConfigurationPropertyThe item limit configuration for the category field well of a combo chart.
categorySort?IResolvable | IResolvable | FieldSortOptionsProperty[]The sort configuration of the category field well in a combo chart.
colorItemsLimit?IResolvable | ItemsLimitConfigurationPropertyThe item limit configuration of the color field well in a combo chart.
colorSort?IResolvable | IResolvable | FieldSortOptionsProperty[]The sort configuration of the color field well in a combo chart.

categoryItemsLimit?

Type: IResolvable | ItemsLimitConfigurationProperty (optional)

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


categorySort?

Type: IResolvable | IResolvable | FieldSortOptionsProperty[] (optional)

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


colorItemsLimit?

Type: IResolvable | ItemsLimitConfigurationProperty (optional)

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


colorSort?

Type: IResolvable | IResolvable | FieldSortOptionsProperty[] (optional)

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