Show / Hide Table of Contents

Class CfnTemplate.ColorScaleProperty

Determines the color scale that is applied to the visual.

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

Link: 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.AWS.QuickSight;

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

    // the properties below are optional
    NullValueColor = new DataColorProperty {
        Color = "color",
        DataValue = 123
    }
};

Synopsis

Constructors

ColorScaleProperty()

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()

public ColorScaleProperty()

Properties

ColorFillType

Determines the color fill type.

public string ColorFillType { get; set; }
Property Value

System.String

Remarks

Link: 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

System.Object

Remarks

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

NullValueColor

Determines the color that is applied to null values.

public object NullValueColor { get; set; }
Property Value

System.Object

Remarks

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

Implements

CfnTemplate.IColorScaleProperty
Back to top Generated by DocFX