interface PieChartSortConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.PieChartSortConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_PieChartSortConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.PieChartSortConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.PieChartSortConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » PieChartSortConfigurationProperty |
The sort configuration of a pie chart.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const pieChartSortConfigurationProperty: quicksight_mixins.CfnAnalysisPropsMixin.PieChartSortConfigurationProperty = {
categoryItemsLimit: {
itemsLimit: 123,
otherCategories: 'otherCategories',
},
categorySort: [{
columnSort: {
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
},
fieldSort: {
direction: 'direction',
fieldId: 'fieldId',
},
}],
smallMultiplesLimitConfiguration: {
itemsLimit: 123,
otherCategories: 'otherCategories',
},
smallMultiplesSort: [{
columnSort: {
aggregationFunction: {
attributeAggregationFunction: {
simpleAttributeAggregation: 'simpleAttributeAggregation',
valueForMultipleValues: 'valueForMultipleValues',
},
categoricalAggregationFunction: 'categoricalAggregationFunction',
dateAggregationFunction: 'dateAggregationFunction',
numericalAggregationFunction: {
percentileAggregation: {
percentileValue: 123,
},
simpleNumericalAggregation: 'simpleNumericalAggregation',
},
},
direction: 'direction',
sortBy: {
columnName: 'columnName',
dataSetIdentifier: 'dataSetIdentifier',
},
},
fieldSort: {
direction: 'direction',
fieldId: 'fieldId',
},
}],
};
Properties
| Name | Type | Description |
|---|---|---|
| category | IResolvable | Items | The limit on the number of categories that are displayed in a pie chart. |
| category | IResolvable | (IResolvable | Field)[] | The sort configuration of the category fields. |
| 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. |
categoryItemsLimit?
Type:
IResolvable | Items
(optional)
The limit on the number of categories that are displayed in a pie chart.
categorySort?
Type:
IResolvable | (IResolvable | Field)[]
(optional)
The sort configuration of the category fields.
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.

.NET
Go
Java
Python
TypeScript