aws-cdk-lib.aws_quicksight.CfnAnalysis.SmallMultiplesOptionsProperty

interface SmallMultiplesOptionsProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnAnalysis.SmallMultiplesOptionsProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_SmallMultiplesOptionsProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnAnalysis.SmallMultiplesOptionsProperty
Pythonaws_cdk.aws_quicksight.CfnAnalysis.SmallMultiplesOptionsProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnAnalysis » 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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const smallMultiplesOptionsProperty: quicksight.CfnAnalysis.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

NameTypeDescription
maxVisibleColumns?numberSets the maximum number of visible columns to display in the grid of small multiples panels.
maxVisibleRows?numberSets the maximum number of visible rows to display in the grid of small multiples panels.
panelConfiguration?IResolvable | PanelConfigurationPropertyConfigures 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 | PanelConfigurationProperty (optional)

Configures the display options for each small multiples panel.