interface SmallMultiplesAxisPropertiesProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.SmallMultiplesAxisPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnTemplate_SmallMultiplesAxisPropertiesProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.SmallMultiplesAxisPropertiesProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.SmallMultiplesAxisPropertiesProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnTemplate » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const smallMultiplesAxisPropertiesProperty: quicksight.CfnTemplate.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