interface GeospatialColorProperty
Language | Type name |
---|---|
![]() | Amazon.CDK.AWS.QuickSight.CfnAnalysis.GeospatialColorProperty |
![]() | github.com/aws/aws-cdk-go/awscdk/v2/awsquicksight#CfnAnalysis_GeospatialColorProperty |
![]() | software.amazon.awscdk.services.quicksight.CfnAnalysis.GeospatialColorProperty |
![]() | aws_cdk.aws_quicksight.CfnAnalysis.GeospatialColorProperty |
![]() | aws-cdk-lib » aws_quicksight » CfnAnalysis » GeospatialColorProperty |
The visualization properties for solid, gradient, and categorical colors.
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 geospatialColorProperty: quicksight.CfnAnalysis.GeospatialColorProperty = {
categorical: {
categoryDataColors: [{
color: 'color',
dataValue: 'dataValue',
}],
// the properties below are optional
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
},
gradient: {
stepColors: [{
color: 'color',
dataValue: 123,
}],
// the properties below are optional
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
},
solid: {
color: 'color',
// the properties below are optional
state: 'state',
},
};
Properties
Name | Type | Description |
---|---|---|
categorical? | IResolvable | Geospatial | The visualization properties for the categorical color. |
gradient? | IResolvable | Geospatial | The visualization properties for the gradient color. |
solid? | IResolvable | Geospatial | The visualization properties for the solid color. |
categorical?
Type:
IResolvable
|
Geospatial
(optional)
The visualization properties for the categorical color.
gradient?
Type:
IResolvable
|
Geospatial
(optional)
The visualization properties for the gradient color.
solid?
Type:
IResolvable
|
Geospatial
(optional)
The visualization properties for the solid color.