Class CfnTemplate.AxisLabelOptionsProperty
The label options for a chart axis.
Inheritance
System.Object
    CfnTemplate.AxisLabelOptionsProperty
  Implements
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class AxisLabelOptionsProperty : Object, CfnTemplate.IAxisLabelOptionsPropertySyntax (vb)
Public Class AxisLabelOptionsProperty
    Inherits Object
    Implements CfnTemplate.IAxisLabelOptionsPropertyRemarks
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
| AxisLabelOptionsProperty() | 
Properties
| ApplyTo | The options that indicate which field the label belongs to. | 
| CustomLabel | The text for the axis label. | 
| FontConfiguration | 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.Object
Remarks
CustomLabel
The text for the axis label.
public string CustomLabel { get; set; }Property Value
System.String
Remarks
FontConfiguration
The font configuration of the axis label.
public object FontConfiguration { get; set; }Property Value
System.Object