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 IDataColorPaletteProperty
Syntax (vb)
Public Interface 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. |
Empty |
The hexadecimal code of a color that applies to charts where a lack of data is highlighted. |
Min |
The minimum and maximum hexadecimal codes that describe a color gradient. |
Properties
Colors
The hexadecimal codes for the colors.
virtual string[] Colors { get; }
Property Value
System.
Remarks
EmptyFillColor
The hexadecimal code of a color that applies to charts where a lack of data is highlighted.
virtual string EmptyFillColor { get; }
Property Value
System.
Remarks
MinMaxGradient
The minimum and maximum hexadecimal codes that describe a color gradient.
virtual string[] MinMaxGradient { get; }
Property Value
System.