interface GeospatialCategoricalColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GeospatialCategoricalColorProperty |
Go | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_GeospatialCategoricalColorProperty |
Java | software.amazon.awscdk.services.quicksight.CfnAnalysis.GeospatialCategoricalColorProperty |
Python | aws_cdk.aws_quicksight.CfnAnalysis.GeospatialCategoricalColorProperty |
TypeScript | aws-cdk-lib » aws_quicksight » CfnAnalysis » GeospatialCategoricalColorProperty |
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 { aws_quicksight as quicksight } from 'aws-cdk-lib';
const geospatialCategoricalColorProperty: quicksight.CfnAnalysis.GeospatialCategoricalColorProperty = {
categoryDataColors: [{
color: 'color',
dataValue: 'dataValue',
}],
// the properties below are optional
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
};
Properties
| Name | Type | Description |
|---|---|---|
| category | IResolvable | (IResolvable | Geospatial)[] | A list of categorical data colors for each category. |
| default | number | The default opacity of a categorical color. |
| null | IResolvable | Geospatial | The null data visualization settings. |
| null | string | The state of visibility for null data. |
categoryDataColors
Type:
IResolvable | (IResolvable | Geospatial)[]
A list of categorical data colors for each category.
defaultOpacity?
Type:
number
(optional)
The default opacity of a categorical color.
nullDataSettings?
Type:
IResolvable | Geospatial
(optional)
The null data visualization settings.
nullDataVisibility?
Type:
string
(optional)
The state of visibility for null data.

.NET
Go
Java
Python
TypeScript