Show / Hide Table of Contents

Interface CfnAnalysis.IAxisLabelOptionsProperty

The label options for a chart axis.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnAnalysis.IAxisLabelOptionsProperty
Syntax (vb)
Public Interface CfnAnalysis.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-analysis-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

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.

Properties

ApplyTo

The options that indicate which field the label belongs to.

object? ApplyTo { get; }
Property Value

object

Remarks

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

CustomLabel

The text for the axis label.

string? CustomLabel { get; }
Property Value

string

Remarks

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

FontConfiguration

The font configuration of the axis label.

object? FontConfiguration { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX