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