interface SmallMultiplesAxisPropertiesProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.SmallMultiplesAxisPropertiesProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_SmallMultiplesAxisPropertiesProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.SmallMultiplesAxisPropertiesProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.SmallMultiplesAxisPropertiesProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » 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.CfnAnalysis.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
.