Interface CfnDashboard.GeospatialCircleSymbolStyleProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnDashboard.GeospatialCircleSymbolStyleProperty.Jsii$Proxy
- Enclosing class:
CfnDashboard
@Stability(Stable)
public static interface CfnDashboard.GeospatialCircleSymbolStyleProperty
extends software.amazon.jsii.JsiiSerializable
The properties for a circle symbol style.
Example:
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import software.amazon.awscdk.services.quicksight.*;
GeospatialCircleSymbolStyleProperty geospatialCircleSymbolStyleProperty = GeospatialCircleSymbolStyleProperty.builder()
.circleRadius(GeospatialCircleRadiusProperty.builder()
.radius(123)
.build())
.fillColor(GeospatialColorProperty.builder()
.categorical(GeospatialCategoricalColorProperty.builder()
.categoryDataColors(List.of(GeospatialCategoricalDataColorProperty.builder()
.color("color")
.dataValue("dataValue")
.build()))
// the properties below are optional
.defaultOpacity(123)
.nullDataSettings(GeospatialNullDataSettingsProperty.builder()
.symbolStyle(GeospatialNullSymbolStyleProperty.builder()
.fillColor("fillColor")
.strokeColor("strokeColor")
.strokeWidth(123)
.build())
.build())
.nullDataVisibility("nullDataVisibility")
.build())
.gradient(GeospatialGradientColorProperty.builder()
.stepColors(List.of(GeospatialGradientStepColorProperty.builder()
.color("color")
.dataValue(123)
.build()))
// the properties below are optional
.defaultOpacity(123)
.nullDataSettings(GeospatialNullDataSettingsProperty.builder()
.symbolStyle(GeospatialNullSymbolStyleProperty.builder()
.fillColor("fillColor")
.strokeColor("strokeColor")
.strokeWidth(123)
.build())
.build())
.nullDataVisibility("nullDataVisibility")
.build())
.solid(GeospatialSolidColorProperty.builder()
.color("color")
// the properties below are optional
.state("state")
.build())
.build())
.strokeColor(GeospatialColorProperty.builder()
.categorical(GeospatialCategoricalColorProperty.builder()
.categoryDataColors(List.of(GeospatialCategoricalDataColorProperty.builder()
.color("color")
.dataValue("dataValue")
.build()))
// the properties below are optional
.defaultOpacity(123)
.nullDataSettings(GeospatialNullDataSettingsProperty.builder()
.symbolStyle(GeospatialNullSymbolStyleProperty.builder()
.fillColor("fillColor")
.strokeColor("strokeColor")
.strokeWidth(123)
.build())
.build())
.nullDataVisibility("nullDataVisibility")
.build())
.gradient(GeospatialGradientColorProperty.builder()
.stepColors(List.of(GeospatialGradientStepColorProperty.builder()
.color("color")
.dataValue(123)
.build()))
// the properties below are optional
.defaultOpacity(123)
.nullDataSettings(GeospatialNullDataSettingsProperty.builder()
.symbolStyle(GeospatialNullSymbolStyleProperty.builder()
.fillColor("fillColor")
.strokeColor("strokeColor")
.strokeWidth(123)
.build())
.build())
.nullDataVisibility("nullDataVisibility")
.build())
.solid(GeospatialSolidColorProperty.builder()
.color("color")
// the properties below are optional
.state("state")
.build())
.build())
.strokeWidth(GeospatialLineWidthProperty.builder()
.lineWidth(123)
.build())
.build();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnDashboard.GeospatialCircleSymbolStylePropertystatic final classAn implementation forCfnDashboard.GeospatialCircleSymbolStyleProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCircleRadius
The radius of the circle.Returns union: either
IResolvableorCfnDashboard.GeospatialCircleRadiusProperty- See Also:
-
getFillColor
The color and opacity values for the fill color.Returns union: either
IResolvableorCfnDashboard.GeospatialColorProperty- See Also:
-
getStrokeColor
The color and opacity values for the stroke color.Returns union: either
IResolvableorCfnDashboard.GeospatialColorProperty- See Also:
-
getStrokeWidth
The width of the stroke (border).Returns union: either
IResolvableorCfnDashboard.GeospatialLineWidthProperty- See Also:
-
builder
-