interface ItemsLimitConfigurationProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnDashboardPropsMixin.ItemsLimitConfigurationProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnDashboardPropsMixin_ItemsLimitConfigurationProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnDashboardPropsMixin.ItemsLimitConfigurationProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnDashboardPropsMixin.ItemsLimitConfigurationProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const itemsLimitConfigurationProperty: quicksight_mixins.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