Interface CfnDashboard.IPanelConfigurationProperty
A collection of options that configure how each panel displays in a small multiples chart.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDashboard.IPanelConfigurationProperty
Syntax (vb)
Public Interface CfnDashboard.IPanelConfigurationProperty
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 panelConfigurationProperty = new PanelConfigurationProperty {
BackgroundColor = "backgroundColor",
BackgroundVisibility = "backgroundVisibility",
BorderColor = "borderColor",
BorderStyle = "borderStyle",
BorderThickness = "borderThickness",
BorderVisibility = "borderVisibility",
GutterSpacing = "gutterSpacing",
GutterVisibility = "gutterVisibility",
Title = 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
Properties
BackgroundColor | Sets the background color for each panel. |
BackgroundVisibility | Determines whether or not a background for each small multiples panel is rendered. |
BorderColor | Sets the line color of panel borders. |
BorderStyle | Sets the line style of panel borders. |
BorderThickness | Sets the line thickness of panel borders. |
BorderVisibility | Determines whether or not each panel displays a border. |
GutterSpacing | Sets the total amount of negative space to display between sibling panels. |
GutterVisibility | Determines whether or not negative space between sibling panels is rendered. |
Title | Configures the title display within each small multiples panel. |
Properties
BackgroundColor
Sets the background color for each panel.
string? BackgroundColor { get; }
Property Value
Remarks
BackgroundVisibility
Determines whether or not a background for each small multiples panel is rendered.
string? BackgroundVisibility { get; }
Property Value
Remarks
BorderColor
Sets the line color of panel borders.
string? BorderColor { get; }
Property Value
Remarks
BorderStyle
Sets the line style of panel borders.
string? BorderStyle { get; }
Property Value
Remarks
BorderThickness
Sets the line thickness of panel borders.
string? BorderThickness { get; }
Property Value
Remarks
BorderVisibility
Determines whether or not each panel displays a border.
string? BorderVisibility { get; }
Property Value
Remarks
GutterSpacing
Sets the total amount of negative space to display between sibling panels.
string? GutterSpacing { get; }
Property Value
Remarks
GutterVisibility
Determines whether or not negative space between sibling panels is rendered.
string? GutterVisibility { get; }
Property Value
Remarks
Title
Configures the title display within each small multiples panel.
object? Title { get; }