aws-cdk-lib.aws_quicksight.CfnDashboard.PanelConfigurationProperty

interface PanelConfigurationProperty

LanguageType name
.NETAmazon.CDK.AWS.QuickSight.CfnDashboard.PanelConfigurationProperty
Gogithub.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_PanelConfigurationProperty
Javasoftware.amazon.awscdk.services.quicksight.CfnDashboard.PanelConfigurationProperty
Pythonaws_cdk.aws_quicksight.CfnDashboard.PanelConfigurationProperty
TypeScript aws-cdk-lib » aws_quicksight » CfnDashboard » PanelConfigurationProperty

A collection of options that configure how each panel displays in a small multiples chart.

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 panelConfigurationProperty: quicksight.CfnDashboard.PanelConfigurationProperty = {
  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
backgroundColor?stringSets the background color for each panel.
backgroundVisibility?stringDetermines whether or not a background for each small multiples panel is rendered.
borderColor?stringSets the line color of panel borders.
borderStyle?stringSets the line style of panel borders.
borderThickness?stringSets the line thickness of panel borders.
borderVisibility?stringDetermines whether or not each panel displays a border.
gutterSpacing?stringSets the total amount of negative space to display between sibling panels.
gutterVisibility?stringDetermines whether or not negative space between sibling panels is rendered.
title?IResolvable | PanelTitleOptionsPropertyConfigures the title display within each small multiples panel.

backgroundColor?

Type: string (optional)

Sets the background color for each panel.


backgroundVisibility?

Type: string (optional)

Determines whether or not a background for each small multiples panel is rendered.


borderColor?

Type: string (optional)

Sets the line color of panel borders.


borderStyle?

Type: string (optional)

Sets the line style of panel borders.


borderThickness?

Type: string (optional)

Sets the line thickness of panel borders.


borderVisibility?

Type: string (optional)

Determines whether or not each panel displays a border.


gutterSpacing?

Type: string (optional)

Sets the total amount of negative space to display between sibling panels.


gutterVisibility?

Type: string (optional)

Determines whether or not negative space between sibling panels is rendered.


title?

Type: IResolvable | PanelTitleOptionsProperty (optional)

Configures the title display within each small multiples panel.