interface ItemsLimitConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.CfnPropertyMixins.AWS.QuickSight.CfnDashboardPropsMixin.ItemsLimitConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkcfnpropertymixins/v2/awsquicksight#CfnDashboardPropsMixin_ItemsLimitConfigurationProperty |
Java | software.amazon.awscdk.cfnpropertymixins.services.quicksight.CfnDashboardPropsMixin.ItemsLimitConfigurationProperty |
Python | aws_cdk.cfn_property_mixins.aws_quicksight.CfnDashboardPropsMixin.ItemsLimitConfigurationProperty |
TypeScript | @aws-cdk/cfn-property-mixins » aws_quicksight » CfnDashboardPropsMixin » 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/cfn-property-mixins';
const itemsLimitConfigurationProperty: quicksight.CfnDashboardPropsMixin.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