Show / Hide Table of Contents

Class CfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty

The conditional formatting for the primary value of a GaugeChartVisual .

Inheritance
System.Object
CfnDashboard.GaugeChartPrimaryValueConditionalFormattingProperty
Implements
CfnDashboard.IGaugeChartPrimaryValueConditionalFormattingProperty
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.AWS.QuickSight.dll
Syntax (csharp)
public class GaugeChartPrimaryValueConditionalFormattingProperty : Object, CfnDashboard.IGaugeChartPrimaryValueConditionalFormattingProperty
Syntax (vb)
Public Class GaugeChartPrimaryValueConditionalFormattingProperty
    Inherits Object
    Implements CfnDashboard.IGaugeChartPrimaryValueConditionalFormattingProperty
Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartprimaryvalueconditionalformatting.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 gaugeChartPrimaryValueConditionalFormattingProperty = new GaugeChartPrimaryValueConditionalFormattingProperty {
    Icon = new ConditionalFormattingIconProperty {
        CustomCondition = new ConditionalFormattingCustomIconConditionProperty {
            Expression = "expression",
            IconOptions = new ConditionalFormattingCustomIconOptionsProperty {
                Icon = "icon",
                UnicodeIcon = "unicodeIcon"
            },

            // the properties below are optional
            Color = "color",
            DisplayConfiguration = new ConditionalFormattingIconDisplayConfigurationProperty {
                IconDisplayOption = "iconDisplayOption"
            }
        },
        IconSet = new ConditionalFormattingIconSetProperty {
            Expression = "expression",

            // the properties below are optional
            IconSetType = "iconSetType"
        }
    },
    TextColor = new ConditionalFormattingColorProperty {
        Gradient = new ConditionalFormattingGradientColorProperty {
            Color = new GradientColorProperty {
                Stops = new [] { new GradientStopProperty {
                    GradientOffset = 123,

                    // the properties below are optional
                    Color = "color",
                    DataValue = 123
                } }
            },
            Expression = "expression"
        },
        Solid = new ConditionalFormattingSolidColorProperty {
            Expression = "expression",

            // the properties below are optional
            Color = "color"
        }
    }
};

Synopsis

Constructors

GaugeChartPrimaryValueConditionalFormattingProperty()

Properties

Icon

The conditional formatting of the primary value icon.

TextColor

The conditional formatting of the primary value text color.

Constructors

GaugeChartPrimaryValueConditionalFormattingProperty()

public GaugeChartPrimaryValueConditionalFormattingProperty()

Properties

Icon

The conditional formatting of the primary value icon.

public object Icon { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartprimaryvalueconditionalformatting.html#cfn-quicksight-dashboard-gaugechartprimaryvalueconditionalformatting-icon

TextColor

The conditional formatting of the primary value text color.

public object TextColor { get; set; }
Property Value

System.Object

Remarks

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartprimaryvalueconditionalformatting.html#cfn-quicksight-dashboard-gaugechartprimaryvalueconditionalformatting-textcolor

Implements

CfnDashboard.IGaugeChartPrimaryValueConditionalFormattingProperty
Back to top Generated by DocFX