Show / Hide Table of Contents

Class CfnDashboard.GaugeChartConditionalFormattingOptionProperty

Conditional formatting options of a GaugeChartVisual .

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

Link: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-gaugechartconditionalformattingoption.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 gaugeChartConditionalFormattingOptionProperty = new GaugeChartConditionalFormattingOptionProperty {
    Arc = new GaugeChartArcConditionalFormattingProperty {
        ForegroundColor = 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"
            }
        }
    },
    PrimaryValue = 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

GaugeChartConditionalFormattingOptionProperty()

Properties

Arc

The options that determine the presentation of the arc of a GaugeChartVisual .

PrimaryValue

The conditional formatting for the primary value of a GaugeChartVisual .

Constructors

GaugeChartConditionalFormattingOptionProperty()

public GaugeChartConditionalFormattingOptionProperty()

Properties

Arc

The options that determine the presentation of the arc of a GaugeChartVisual .

public object Arc { get; set; }
Property Value

System.Object

Remarks

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

PrimaryValue

The conditional formatting for the primary value of a GaugeChartVisual .

public object PrimaryValue { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnDashboard.IGaugeChartConditionalFormattingOptionProperty
Back to top Generated by DocFX