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