Show / Hide Table of Contents

Class CfnDashboard.ConditionalFormattingGradientColorProperty

Formatting configuration for gradient color.

Inheritance
object
CfnDashboard.ConditionalFormattingGradientColorProperty
Implements
CfnDashboard.IConditionalFormattingGradientColorProperty
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 CfnDashboard.ConditionalFormattingGradientColorProperty : CfnDashboard.IConditionalFormattingGradientColorProperty
Syntax (vb)
Public Class CfnDashboard.ConditionalFormattingGradientColorProperty Implements CfnDashboard.IConditionalFormattingGradientColorProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-conditionalformattinggradientcolor.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 conditionalFormattingGradientColorProperty = new ConditionalFormattingGradientColorProperty {
                 Color = new GradientColorProperty {
                     Stops = new [] { new GradientStopProperty {
                         GradientOffset = 123,

                         // the properties below are optional
                         Color = "color",
                         DataValue = 123
                     } }
                 },
                 Expression = "expression"
             };

Synopsis

Constructors

ConditionalFormattingGradientColorProperty()

Formatting configuration for gradient color.

Properties

Color

Determines the color.

Expression

The expression that determines the formatting configuration for gradient color.

Constructors

ConditionalFormattingGradientColorProperty()

Formatting configuration for gradient color.

public ConditionalFormattingGradientColorProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-conditionalformattinggradientcolor.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 conditionalFormattingGradientColorProperty = new ConditionalFormattingGradientColorProperty {
                 Color = new GradientColorProperty {
                     Stops = new [] { new GradientStopProperty {
                         GradientOffset = 123,

                         // the properties below are optional
                         Color = "color",
                         DataValue = 123
                     } }
                 },
                 Expression = "expression"
             };

Properties

Color

Determines the color.

public object Color { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-conditionalformattinggradientcolor.html#cfn-quicksight-dashboard-conditionalformattinggradientcolor-color

Expression

The expression that determines the formatting configuration for gradient color.

public string Expression { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-conditionalformattinggradientcolor.html#cfn-quicksight-dashboard-conditionalformattinggradientcolor-expression

Implements

CfnDashboard.IConditionalFormattingGradientColorProperty
Back to top Generated by DocFX