Interface CfnAnalysisPropsMixin.ILegendOptionsProperty
The options for the legend setup of a visual.
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.ILegendOptionsProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.ILegendOptionsProperty
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.Mixins.Preview.AWS.QuickSight.Mixins;
var legendOptionsProperty = new LegendOptionsProperty {
Height = "height",
Position = "position",
Title = new LabelOptionsProperty {
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility"
},
ValueFontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontFamily = "fontFamily",
FontSize = new FontSizeProperty {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
},
Visibility = "visibility",
Width = "width"
};
Synopsis
Properties
| Height | The height of the legend. |
| Position | The positions for the legend. Choose one of the following options:. |
| Title | The custom title for the legend. |
| ValueFontConfiguration | The options for the legend setup of a visual. |
| Visibility | Determines whether or not the legend is visible. |
| Width | The width of the legend. |
Properties
Height
The height of the legend.
string? Height { get; }
Property Value
Remarks
If this value is omitted, a default height is used when rendering.
Position
The positions for the legend. Choose one of the following options:.
string? Position { get; }
Property Value
Remarks
Title
The custom title for the legend.
object? Title { get; }
Property Value
Remarks
ValueFontConfiguration
The options for the legend setup of a visual.
object? ValueFontConfiguration { get; }
Property Value
Remarks
Visibility
Determines whether or not the legend is visible.
string? Visibility { get; }
Property Value
Remarks
Width
The width of the legend.
string? Width { get; }
Property Value
Remarks
If this value is omitted, a default width is used when rendering.