interface PanelConfigurationProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.PanelConfigurationProperty | 
|  Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnDashboard_PanelConfigurationProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.PanelConfigurationProperty | 
|  Python | aws_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',
      fontFamily: 'fontFamily',
      fontSize: {
        absolute: 'absolute',
        relative: 'relative',
      },
      fontStyle: 'fontStyle',
      fontWeight: {
        name: 'name',
      },
    },
    horizontalTextAlignment: 'horizontalTextAlignment',
    visibility: 'visibility',
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| background | string | Sets the background color for each panel. | 
| background | string | Determines whether or not a background for each small multiples panel is rendered. | 
| border | string | Sets the line color of panel borders. | 
| border | string | Sets the line style of panel borders. | 
| border | string | Sets the line thickness of panel borders. | 
| border | string | Determines whether or not each panel displays a border. | 
| gutter | string | Sets the total amount of negative space to display between sibling panels. | 
| gutter | string | Determines whether or not negative space between sibling panels is rendered. | 
| title? | IResolvable | Panel | Configures 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 | Panel
(optional)
Configures the title display within each small multiples panel.
