Show / Hide Table of Contents

Interface CfnTheme.IDataColorPaletteProperty

The theme colors that are used for data colors in charts.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnTheme.IDataColorPaletteProperty
Syntax (vb)
Public Interface CfnTheme.IDataColorPaletteProperty
Remarks

The colors description is a hexadecimal color code that consists of six alphanumerical characters, prefixed with # , for example #37BFF5.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-datacolorpalette.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 dataColorPaletteProperty = new DataColorPaletteProperty {
                 Colors = new [] { "colors" },
                 EmptyFillColor = "emptyFillColor",
                 MinMaxGradient = new [] { "minMaxGradient" }
             };

Synopsis

Properties

Colors

The hexadecimal codes for the colors.

EmptyFillColor

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

MinMaxGradient

The minimum and maximum hexadecimal codes that describe a color gradient.

Properties

Colors

The hexadecimal codes for the colors.

string[]? Colors { get; }
Property Value

string[]

Remarks

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

EmptyFillColor

The hexadecimal code of a color that applies to charts where a lack of data is highlighted.

string? EmptyFillColor { get; }
Property Value

string

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-datacolorpalette.html#cfn-quicksight-theme-datacolorpalette-emptyfillcolor

MinMaxGradient

The minimum and maximum hexadecimal codes that describe a color gradient.

string[]? MinMaxGradient { get; }
Property Value

string[]

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-theme-datacolorpalette.html#cfn-quicksight-theme-datacolorpalette-minmaxgradient

Back to top Generated by DocFX