Class CfnDashboard.GeospatialGradientColorProperty
The definition for a gradient color.
Implements
Inherited Members
Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public class CfnDashboard.GeospatialGradientColorProperty : CfnDashboard.IGeospatialGradientColorProperty
Syntax (vb)
Public Class CfnDashboard.GeospatialGradientColorProperty 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
GeospatialGradientColorProperty() | The definition for a gradient color. |
Properties
DefaultOpacity | The default opacity for the gradient color. |
NullDataSettings | The null data visualization settings. |
NullDataVisibility | The state of visibility for null data. |
StepColors | A list of gradient step colors for the gradient. |
Constructors
GeospatialGradientColorProperty()
The definition for a gradient color.
public GeospatialGradientColorProperty()
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"
};
Properties
DefaultOpacity
The default opacity for the gradient color.
public double? DefaultOpacity { get; set; }
Property Value
Remarks
NullDataSettings
The null data visualization settings.
public object? NullDataSettings { get; set; }
Property Value
Remarks
NullDataVisibility
The state of visibility for null data.
public string? NullDataVisibility { get; set; }
Property Value
Remarks
StepColors
A list of gradient step colors for the gradient.
public object StepColors { get; set; }