Show / Hide Table of Contents

Class CfnTemplate.AxisLabelOptionsProperty

The label options for a chart axis.

Inheritance
object
CfnTemplate.AxisLabelOptionsProperty
Implements
CfnTemplate.IAxisLabelOptionsProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnTemplate.AxisLabelOptionsProperty : CfnTemplate.IAxisLabelOptionsProperty
Syntax (vb)
Public Class CfnTemplate.AxisLabelOptionsProperty Implements CfnTemplate.IAxisLabelOptionsProperty
Remarks

You must specify the field that the label is targeted to.

See: 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",
                     FontFamily = "fontFamily",
                     FontSize = new FontSizeProperty {
                         Absolute = "absolute",
                         Relative = "relative"
                     },
                     FontStyle = "fontStyle",
                     FontWeight = new FontWeightProperty {
                         Name = "name"
                     }
                 }
             };

Synopsis

Constructors

AxisLabelOptionsProperty()

The label options for a chart axis.

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()

The label options for a chart axis.

public AxisLabelOptionsProperty()
Remarks

You must specify the field that the label is targeted to.

See: 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",
                     FontFamily = "fontFamily",
                     FontSize = new FontSizeProperty {
                         Absolute = "absolute",
                         Relative = "relative"
                     },
                     FontStyle = "fontStyle",
                     FontWeight = new FontWeightProperty {
                         Name = "name"
                     }
                 }
             };

Properties

ApplyTo

The options that indicate which field the label belongs to.

public object? ApplyTo { get; set; }
Property Value

object

Remarks

See: 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

string

Remarks

See: 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

object

Remarks

See: 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