interface PanelTitleOptionsProperty
| Language | Type name | 
|---|---|
|  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.PanelTitleOptionsProperty | 
|  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.PanelTitleOptionsProperty | 
|  Python | aws_cdk.aws_quicksight.CfnDashboard.PanelTitleOptionsProperty | 
|  TypeScript | @aws-cdk/aws-quicksight»CfnDashboard»PanelTitleOptionsProperty | 
The options that determine the title styles for each small multiples panel.
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 panelTitleOptionsProperty: quicksight.CfnDashboard.PanelTitleOptionsProperty = {
  fontConfiguration: {
    fontColor: 'fontColor',
    fontDecoration: 'fontDecoration',
    fontSize: {
      relative: 'relative',
    },
    fontStyle: 'fontStyle',
    fontWeight: {
      name: 'name',
    },
  },
  horizontalTextAlignment: 'horizontalTextAlignment',
  visibility: 'visibility',
};
Properties
| Name | Type | Description | 
|---|---|---|
| font | IResolvable | Font | CfnDashboard.PanelTitleOptionsProperty.FontConfiguration. | 
| horizontal | string | Sets the horizontal text alignment of the title within each panel. | 
| visibility? | string | Determines whether or not panel titles are displayed. | 
fontConfiguration?
Type:
IResolvable | Font
(optional)
CfnDashboard.PanelTitleOptionsProperty.FontConfiguration.
horizontalTextAlignment?
Type:
string
(optional)
Sets the horizontal text alignment of the title within each panel.
visibility?
Type:
string
(optional)
Determines whether or not panel titles are displayed.
