Interface CfnAnalysis.IAxisLabelOptionsProperty
The label options for a chart axis.
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface IAxisLabelOptionsProperty
Syntax (vb)
Public Interface 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 {
Absolute = "absolute",
Relative = "relative"
},
FontStyle = "fontStyle",
FontWeight = new FontWeightProperty {
Name = "name"
}
}
};
Synopsis
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. |
Properties
ApplyTo
The options that indicate which field the label belongs to.
virtual object ApplyTo { get; }
Property Value
System.
Remarks
CustomLabel
The text for the axis label.
virtual string CustomLabel { get; }
Property Value
System.
Remarks
FontConfiguration
The font configuration of the axis label.
virtual object FontConfiguration { get; }
Property Value
System.