Class CfnDashboardPropsMixin.GradientColorProperty
Determines the gradient color settings.
Implements
Inherited Members
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public class CfnDashboardPropsMixin.GradientColorProperty : CfnDashboardPropsMixin.IGradientColorProperty
Syntax (vb)
Public Class CfnDashboardPropsMixin.GradientColorProperty Implements CfnDashboardPropsMixin.IGradientColorProperty
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.CfnPropertyMixins.AWS.QuickSight;
var gradientColorProperty = new GradientColorProperty {
Stops = new [] { new GradientStopProperty {
Color = "color",
DataValue = 123,
GradientOffset = 123
} }
};
Synopsis
Constructors
| GradientColorProperty() | Determines the gradient color settings. |
Properties
| Stops | The list of gradient color stops. |
Constructors
GradientColorProperty()
Determines the gradient color settings.
public GradientColorProperty()
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.CfnPropertyMixins.AWS.QuickSight;
var gradientColorProperty = new GradientColorProperty {
Stops = new [] { new GradientStopProperty {
Color = "color",
DataValue = 123,
GradientOffset = 123
} }
};
Properties
Stops
The list of gradient color stops.
public object? Stops { get; set; }