Class CfnDashboard.GeospatialGradientColorProperty
The definition for a gradient color.
Inheritance
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class GeospatialGradientColorProperty : Object, CfnDashboard.IGeospatialGradientColorProperty
Syntax (vb)
Public Class GeospatialGradientColorProperty
Inherits Object
Implements CfnDashboard.IGeospatialGradientColorProperty
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 geospatialGradientColorProperty = new GeospatialGradientColorProperty {
StepColors = new [] { new GeospatialGradientStepColorProperty {
Color = "color",
DataValue = 123
} },
// the properties below are optional
DefaultOpacity = 123,
NullDataSettings = new GeospatialNullDataSettingsProperty {
SymbolStyle = new GeospatialNullSymbolStyleProperty {
FillColor = "fillColor",
StrokeColor = "strokeColor",
StrokeWidth = 123
}
},
NullDataVisibility = "nullDataVisibility"
};
Synopsis
Constructors
Geospatial |
Properties
Default |
The default opacity for the gradient color. |
Null |
The null data visualization settings. |
Null |
The state of visibility for null data. |
Step |
A list of gradient step colors for the gradient. |
Constructors
GeospatialGradientColorProperty()
public GeospatialGradientColorProperty()
Properties
DefaultOpacity
The default opacity for the gradient color.
public Nullable<double> DefaultOpacity { get; set; }
Property Value
System.
Remarks
NullDataSettings
The null data visualization settings.
public object NullDataSettings { get; set; }
Property Value
System.
Remarks
NullDataVisibility
The state of visibility for null data.
public string NullDataVisibility { get; set; }
Property Value
System.
Remarks
StepColors
A list of gradient step colors for the gradient.
public object StepColors { get; set; }
Property Value
System.