Show / Hide Table of Contents

Class CfnTemplate.AxisLabelOptionsProperty

The label options for a chart axis.

Inheritance
System.Object
CfnTemplate.AxisLabelOptionsProperty
Implements
CfnTemplate.IAxisLabelOptionsProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.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.

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axislabeloptions.html

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axislabeloptions.html#cfn-quicksight-template-axislabeloptions-applyto

CustomLabel

The text for the axis label.

public string CustomLabel { get; set; }
Property Value

System.String

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axislabeloptions.html#cfn-quicksight-template-axislabeloptions-customlabel

FontConfiguration

The font configuration of the axis label.

public object FontConfiguration { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-axislabeloptions.html#cfn-quicksight-template-axislabeloptions-fontconfiguration

Implements

CfnTemplate.IAxisLabelOptionsProperty
Back to top Generated by DocFX