Class CfnAnalysis.PanelTitleOptionsProperty
The options that determine the title styles for each small multiples panel.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnAnalysis.PanelTitleOptionsProperty : CfnAnalysis.IPanelTitleOptionsProperty
Syntax (vb)
Public Class CfnAnalysis.PanelTitleOptionsProperty Implements CfnAnalysis.IPanelTitleOptionsProperty
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var panelTitleOptionsProperty = new PanelTitleOptionsProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
HorizontalTextAlignment = "horizontalTextAlignment",
Visibility = "visibility"
};
Synopsis
Constructors
PanelTitleOptionsProperty() | The options that determine the title styles for each small multiples panel. |
Properties
FontConfiguration | The options that determine the title styles for each small multiples panel. |
HorizontalTextAlignment | Sets the horizontal text alignment of the title within each panel. |
Visibility | Determines whether or not panel titles are displayed. |
Constructors
PanelTitleOptionsProperty()
The options that determine the title styles for each small multiples panel.
public PanelTitleOptionsProperty()
Remarks
ExampleMetadata: fixture=_generated
Examples
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
using Amazon.CDK.AWS.QuickSight;
var panelTitleOptionsProperty = new PanelTitleOptionsProperty {
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
HorizontalTextAlignment = "horizontalTextAlignment",
Visibility = "visibility"
};
Properties
FontConfiguration
The options that determine the title styles for each small multiples panel.
public object? FontConfiguration { get; set; }
Property Value
Remarks
HorizontalTextAlignment
Sets the horizontal text alignment of the title within each panel.
public string? HorizontalTextAlignment { get; set; }
Property Value
Remarks
Visibility
Determines whether or not panel titles are displayed.
public string? Visibility { get; set; }