Show / Hide Table of Contents

Class CfnTemplatePropsMixin.ColorScaleProperty

Determines the color scale that is applied to the visual.

Inheritance
object
CfnTemplatePropsMixin.ColorScaleProperty
Implements
CfnTemplatePropsMixin.IColorScaleProperty
Inherited Members
object.GetType()
object.MemberwiseClone()
object.ToString()
object.Equals(object)
object.Equals(object, object)
object.ReferenceEquals(object, object)
object.GetHashCode()
Namespace: Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins
Assembly: Amazon.CDK.Mixins.Preview.dll
Syntax (csharp)
public class CfnTemplatePropsMixin.ColorScaleProperty : CfnTemplatePropsMixin.IColorScaleProperty
Syntax (vb)
Public Class CfnTemplatePropsMixin.ColorScaleProperty Implements CfnTemplatePropsMixin.IColorScaleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-colorscale.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var colorScaleProperty = new ColorScaleProperty {
                 ColorFillType = "colorFillType",
                 Colors = new [] { new DataColorProperty {
                     Color = "color",
                     DataValue = 123
                 } },
                 NullValueColor = new DataColorProperty {
                     Color = "color",
                     DataValue = 123
                 }
             };

Synopsis

Constructors

ColorScaleProperty()

Determines the color scale that is applied to the visual.

Properties

ColorFillType

Determines the color fill type.

Colors

Determines the list of colors that are applied to the visual.

NullValueColor

Determines the color that is applied to null values.

Constructors

ColorScaleProperty()

Determines the color scale that is applied to the visual.

public ColorScaleProperty()
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-colorscale.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.Mixins.Preview.AWS.QuickSight.Mixins;

             var colorScaleProperty = new ColorScaleProperty {
                 ColorFillType = "colorFillType",
                 Colors = new [] { new DataColorProperty {
                     Color = "color",
                     DataValue = 123
                 } },
                 NullValueColor = new DataColorProperty {
                     Color = "color",
                     DataValue = 123
                 }
             };

Properties

ColorFillType

Determines the color fill type.

public string? ColorFillType { get; set; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-colorscale.html#cfn-quicksight-template-colorscale-colorfilltype

Colors

Determines the list of colors that are applied to the visual.

public object? Colors { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-colorscale.html#cfn-quicksight-template-colorscale-colors

Type union: either IResolvable or (either IResolvable or CfnTemplatePropsMixin.IDataColorProperty)[]

NullValueColor

Determines the color that is applied to null values.

public object? NullValueColor { get; set; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-template-colorscale.html#cfn-quicksight-template-colorscale-nullvaluecolor

Type union: either IResolvable or CfnTemplatePropsMixin.IDataColorProperty

Implements

CfnTemplatePropsMixin.IColorScaleProperty
Back to top Generated by DocFX