interface ItemsLimitConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.ItemsLimitConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_ItemsLimitConfigurationProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.ItemsLimitConfigurationProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.ItemsLimitConfigurationProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » ItemsLimitConfigurationProperty |
The limit configuration of the visual display for an axis.
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 itemsLimitConfigurationProperty: quicksight.CfnAnalysis.ItemsLimitConfigurationProperty = {
itemsLimit: 123,
otherCategories: 'otherCategories',
};
Properties
| Name | Type | Description |
|---|---|---|
| items | number | The limit on how many items of a field are showed in the chart. |
| other | string | The Show other of an axis in the chart. Choose one of the following options:. |
itemsLimit?
Type:
number
(optional)
The limit on how many items of a field are showed in the chart.
For example, the number of slices that are displayed in a pie chart.
otherCategories?
Type:
string
(optional)
The Show other of an axis in the chart. Choose one of the following options:.
INCLUDEEXCLUDE

.NET
Go
Java
Python
TypeScript