Interface CfnAnalysisPropsMixin.IGeospatialCategoricalColorProperty
The definition for a categorical color.
Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnAnalysisPropsMixin.IGeospatialCategoricalColorProperty
Syntax (vb)
Public Interface CfnAnalysisPropsMixin.IGeospatialCategoricalColorProperty
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.CfnPropertyMixins.AWS.QuickSight;
var geospatialCategoricalColorProperty = new GeospatialCategoricalColorProperty {
CategoryDataColors = new [] { new GeospatialCategoricalDataColorProperty {
Color = "color",
DataValue = "dataValue"
} },
DefaultOpacity = 123,
NullDataSettings = new GeospatialNullDataSettingsProperty {
SymbolStyle = new GeospatialNullSymbolStyleProperty {
FillColor = "fillColor",
StrokeColor = "strokeColor",
StrokeWidth = 123
}
},
NullDataVisibility = "nullDataVisibility"
};
Synopsis
Properties
| CategoryDataColors | A list of categorical data colors for each category. |
| DefaultOpacity | The default opacity of a categorical color. |
| NullDataSettings | The null data visualization settings. |
| NullDataVisibility | The state of visibility for null data. |
Properties
CategoryDataColors
A list of categorical data colors for each category.
object? CategoryDataColors { get; }
Property Value
Remarks
Type union: either IResolvable or (either IResolvable or CfnAnalysisPropsMixin.IGeospatialCategoricalDataColorProperty)[]
DefaultOpacity
The default opacity of a categorical color.
double? DefaultOpacity { get; }
Property Value
Remarks
NullDataSettings
The null data visualization settings.
object? NullDataSettings { get; }
Property Value
Remarks
NullDataVisibility
The state of visibility for null data.
string? NullDataVisibility { get; }