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.
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
EmptyFillColor
The hexadecimal code of a color that applies to charts where a lack of data is highlighted.
string? EmptyFillColor { get; }
Property Value
Remarks
MinMaxGradient
The minimum and maximum hexadecimal codes that describe a color gradient.
string[]? MinMaxGradient { get; }
Property Value
string[]