interface GeospatialCategoricalColorProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialCategoricalColorProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialCategoricalColorProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialCategoricalColorProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialCategoricalColorProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » 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 { mixins as quicksight_mixins } from '@aws-cdk/mixins-preview/aws-quicksight';
const geospatialCategoricalColorProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialCategoricalColorProperty = {
categoryDataColors: [{
color: 'color',
dataValue: 'dataValue',
}],
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)[]
(optional)
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