Interface CfnAnalysis.GeospatialCategoricalColorProperty
- All Superinterfaces:
software.amazon.jsii.JsiiSerializable
- All Known Implementing Classes:
CfnAnalysis.GeospatialCategoricalColorProperty.Jsii$Proxy
- Enclosing class:
CfnAnalysis
@Stability(Stable)
public static interface CfnAnalysis.GeospatialCategoricalColorProperty
extends software.amazon.jsii.JsiiSerializable
The definition for a categorical color.
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.*;
GeospatialCategoricalColorProperty geospatialCategoricalColorProperty = 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();
- See Also:
-
Nested Class Summary
Nested ClassesModifier and TypeInterfaceDescriptionstatic final classA builder forCfnAnalysis.GeospatialCategoricalColorPropertystatic final classAn implementation forCfnAnalysis.GeospatialCategoricalColorProperty -
Method Summary
Methods inherited from interface software.amazon.jsii.JsiiSerializable
$jsii$toJson
-
Method Details
-
getCategoryDataColors
A list of categorical data colors for each category.- See Also:
-
getDefaultOpacity
The default opacity of a categorical color.- See Also:
-
getNullDataSettings
The null data visualization settings.- See Also:
-
getNullDataVisibility
The state of visibility for null data.- See Also:
-
builder
-