interface LineChartSortConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.LineChartSortConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_LineChartSortConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.LineChartSortConfigurationProperty | 
|  Python | aws_cdk.aws_quicksight.CfnAnalysis.LineChartSortConfigurationProperty | 
|  TypeScript | aws-cdk-lib»aws_quicksight»CfnAnalysis»LineChartSortConfigurationProperty | 
The sort configuration of a line chart.
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 lineChartSortConfigurationProperty: quicksight.CfnAnalysis.LineChartSortConfigurationProperty = {
  categoryItemsLimitConfiguration: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  categorySort: [{
    columnSort: {
      direction: 'direction',
      sortBy: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      // the properties below are optional
      aggregationFunction: {
        attributeAggregationFunction: {
          simpleAttributeAggregation: 'simpleAttributeAggregation',
          valueForMultipleValues: 'valueForMultipleValues',
        },
        categoricalAggregationFunction: 'categoricalAggregationFunction',
        dateAggregationFunction: 'dateAggregationFunction',
        numericalAggregationFunction: {
          percentileAggregation: {
            percentileValue: 123,
          },
          simpleNumericalAggregation: 'simpleNumericalAggregation',
        },
      },
    },
    fieldSort: {
      direction: 'direction',
      fieldId: 'fieldId',
    },
  }],
  colorItemsLimitConfiguration: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  smallMultiplesLimitConfiguration: {
    itemsLimit: 123,
    otherCategories: 'otherCategories',
  },
  smallMultiplesSort: [{
    columnSort: {
      direction: 'direction',
      sortBy: {
        columnName: 'columnName',
        dataSetIdentifier: 'dataSetIdentifier',
      },
      // the properties below are optional
      aggregationFunction: {
        attributeAggregationFunction: {
          simpleAttributeAggregation: 'simpleAttributeAggregation',
          valueForMultipleValues: 'valueForMultipleValues',
        },
        categoricalAggregationFunction: 'categoricalAggregationFunction',
        dateAggregationFunction: 'dateAggregationFunction',
        numericalAggregationFunction: {
          percentileAggregation: {
            percentileValue: 123,
          },
          simpleNumericalAggregation: 'simpleNumericalAggregation',
        },
      },
    },
    fieldSort: {
      direction: 'direction',
      fieldId: 'fieldId',
    },
  }],
};
Properties
| Name | Type | Description | 
|---|---|---|
| category | IResolvable | Items | The limit on the number of categories that are displayed in a line chart. | 
| category | IResolvable | (IResolvable | Field)[] | The sort configuration of the category fields. | 
| color | IResolvable | Items | The limit on the number of lines that are displayed in a line chart. | 
| small | IResolvable | Items | The limit on the number of small multiples panels that are displayed. | 
| small | IResolvable | (IResolvable | Field)[] | The sort configuration of the small multiples field. | 
categoryItemsLimitConfiguration?
Type:
IResolvable | Items
(optional)
The limit on the number of categories that are displayed in a line chart.
categorySort?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
The sort configuration of the category fields.
colorItemsLimitConfiguration?
Type:
IResolvable | Items
(optional)
The limit on the number of lines that are displayed in a line chart.
smallMultiplesLimitConfiguration?
Type:
IResolvable | Items
(optional)
The limit on the number of small multiples panels that are displayed.
smallMultiplesSort?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
The sort configuration of the small multiples field.
