interface RadarChartSortConfigurationProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.RadarChartSortConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_RadarChartSortConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.RadarChartSortConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.RadarChartSortConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » RadarChartSortConfigurationProperty |
The sort configuration of a RadarChartVisual
.
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 radarChartSortConfigurationProperty: quicksight.CfnTemplate.RadarChartSortConfigurationProperty = {
categoryItemsLimit: {
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',
},
}],
colorItemsLimit: {
itemsLimit: 123,
otherCategories: 'otherCategories',
},
colorSort: [{
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 category items limit for a radar chart. |
category | IResolvable | IResolvable | Field [] | The category sort options of a radar chart. |
color | IResolvable | Items | The color items limit of a radar chart. |
color | IResolvable | IResolvable | Field [] | The color sort configuration of a radar chart. |
categoryItemsLimit?
Type:
IResolvable
|
Items
(optional)
The category items limit for a radar chart.
categorySort?
Type:
IResolvable
|
IResolvable
|
Field
[]
(optional)
The category sort options of a radar chart.
colorItemsLimit?
Type:
IResolvable
|
Items
(optional)
The color items limit of a radar chart.
colorSort?
Type:
IResolvable
|
IResolvable
|
Field
[]
(optional)
The color sort configuration of a radar chart.