Show / Hide Table of Contents

Class CfnTemplatePropsMixin.AxisLabelOptionsProperty

The label options for a chart axis.

Inheritance
object
CfnTemplatePropsMixin.AxisLabelOptionsProperty
Implements
CfnTemplatePropsMixin.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.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.AxisLabelOptionsProperty : CfnTemplatePropsMixin.IAxisLabelOptionsProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.AxisLabelOptionsProperty Implements CfnTemplatePropsMixin.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.CfnPropertyMixins.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.CfnPropertyMixins.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

Type union: either IResolvable or CfnTemplatePropsMixin.IAxisLabelReferenceOptionsProperty

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

Type union: either IResolvable or CfnTemplatePropsMixin.IFontConfigurationProperty

Implements

CfnTemplatePropsMixin.IAxisLabelOptionsProperty
Back to top Generated by DocFX