interface SmallMultiplesAxisPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.SmallMultiplesAxisPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_SmallMultiplesAxisPropertiesProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.SmallMultiplesAxisPropertiesProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.SmallMultiplesAxisPropertiesProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » SmallMultiplesAxisPropertiesProperty |
Configures the properties of a chart's axes that are used by small multiples panels.
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 smallMultiplesAxisPropertiesProperty: quicksight_mixins.CfnAnalysisPropsMixin.SmallMultiplesAxisPropertiesProperty = {
placement: 'placement',
scale: 'scale',
};
Properties
| Name | Type | Description |
|---|---|---|
| placement? | string | Defines the placement of the axis. |
| scale? | string | Determines whether scale of the axes are shared or independent. |
placement?
Type:
string
(optional)
Defines the placement of the axis.
By default, axes are rendered OUTSIDE of the panels. Axes with INDEPENDENT scale are rendered INSIDE the panels.
scale?
Type:
string
(optional)
Determines whether scale of the axes are shared or independent.
The default value is SHARED .

.NET
Go
Java
Python
TypeScript