Class CfnTemplatePropsMixin.ColorScaleProperty
Determines the color scale that is applied to the visual.
Implements
Inherited Members
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
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
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
Remarks
Colors
Determines the list of colors that are applied to the visual.
public object? Colors { get; set; }
Property Value
Remarks
NullValueColor
Determines the color that is applied to null values.
public object? NullValueColor { get; set; }