Class CfnTemplate.AxisLabelOptionsProperty
The label options for a chart axis.
Inheritance
Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class AxisLabelOptionsProperty : Object, CfnTemplate.IAxisLabelOptionsProperty
Syntax (vb)
Public Class AxisLabelOptionsProperty
Inherits Object
Implements CfnTemplate.IAxisLabelOptionsProperty
Remarks
You must specify the field that the label is targeted to.
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 axisLabelOptionsProperty = new AxisLabelOptionsProperty {
ApplyTo = new AxisLabelReferenceOptionsProperty {
Column = new ColumnIdentifierProperty {
ColumnName = "columnName",
DataSetIdentifier = "dataSetIdentifier"
},
FieldId = "fieldId"
},
CustomLabel = "customLabel",
FontConfiguration = new FontConfigurationProperty {
FontColor = "fontColor",
FontDecoration = "fontDecoration",
FontSize = new FontSizeProperty {
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
}
};
Synopsis
Constructors
Axis |
Properties
Apply |
The options that indicate which field the label belongs to. |
Custom |
The text for the axis label. |
Font |
The font configuration of the axis label. |
Constructors
AxisLabelOptionsProperty()
public AxisLabelOptionsProperty()
Properties
ApplyTo
The options that indicate which field the label belongs to.
public object ApplyTo { get; set; }
Property Value
System.
Remarks
CustomLabel
The text for the axis label.
public string CustomLabel { get; set; }
Property Value
System.
Remarks
FontConfiguration
The font configuration of the axis label.
public object FontConfiguration { get; set; }
Property Value
System.