interface SmallMultiplesOptionsProperty
Language | Type name |
---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnTemplate.SmallMultiplesOptionsProperty |
Java | software.amazon.awscdk.services.quicksight.CfnTemplate.SmallMultiplesOptionsProperty |
Python | aws_cdk.aws_quicksight.CfnTemplate.SmallMultiplesOptionsProperty |
TypeScript | @aws-cdk/aws-quicksight » CfnTemplate » SmallMultiplesOptionsProperty |
Options that determine the layout and display options of a chart's small multiples.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const smallMultiplesOptionsProperty: quicksight.CfnTemplate.SmallMultiplesOptionsProperty = {
maxVisibleColumns: 123,
maxVisibleRows: 123,
panelConfiguration: {
backgroundColor: 'backgroundColor',
backgroundVisibility: 'backgroundVisibility',
borderColor: 'borderColor',
borderStyle: 'borderStyle',
borderThickness: 'borderThickness',
borderVisibility: 'borderVisibility',
gutterSpacing: 'gutterSpacing',
gutterVisibility: 'gutterVisibility',
title: {
fontConfiguration: {
fontColor: 'fontColor',
fontDecoration: 'fontDecoration',
fontSize: {
relative: 'relative',
},
fontStyle: 'fontStyle',
fontWeight: {
name: 'name',
},
},
horizontalTextAlignment: 'horizontalTextAlignment',
visibility: 'visibility',
},
},
};
Properties
Name | Type | Description |
---|---|---|
max | number | Sets the maximum number of visible columns to display in the grid of small multiples panels. |
max | number | Sets the maximum number of visible rows to display in the grid of small multiples panels. |
panel | IResolvable | Panel | Configures the display options for each small multiples panel. |
maxVisibleColumns?
Type:
number
(optional)
Sets the maximum number of visible columns to display in the grid of small multiples panels.
The default is Auto
, which automatically adjusts the columns in the grid to fit the overall layout and size of the given chart.
maxVisibleRows?
Type:
number
(optional)
Sets the maximum number of visible rows to display in the grid of small multiples panels.
The default value is Auto
, which automatically adjusts the rows in the grid to fit the overall layout and size of the given chart.
panelConfiguration?
Type:
IResolvable
|
Panel
(optional)
Configures the display options for each small multiples panel.