interface GeospatialPointStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialPointStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialPointStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPointStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialPointStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GeospatialPointStyleProperty |
The point style for a point layer.
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 geospatialPointStyleProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialPointStyleProperty = {
circleSymbolStyle: {
circleRadius: {
radius: 123,
},
fillColor: {
categorical: {
categoryDataColors: [{
color: 'color',
dataValue: 'dataValue',
}],
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
},
gradient: {
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
stepColors: [{
color: 'color',
dataValue: 123,
}],
},
solid: {
color: 'color',
state: 'state',
},
},
strokeColor: {
categorical: {
categoryDataColors: [{
color: 'color',
dataValue: 'dataValue',
}],
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
},
gradient: {
defaultOpacity: 123,
nullDataSettings: {
symbolStyle: {
fillColor: 'fillColor',
strokeColor: 'strokeColor',
strokeWidth: 123,
},
},
nullDataVisibility: 'nullDataVisibility',
stepColors: [{
color: 'color',
dataValue: 123,
}],
},
solid: {
color: 'color',
state: 'state',
},
},
strokeWidth: {
lineWidth: 123,
},
},
};
Properties
| Name | Type | Description |
|---|---|---|
| circle | IResolvable | Geospatial | The circle symbol style for a point layer. |
circleSymbolStyle?
Type:
IResolvable | Geospatial
(optional)
The circle symbol style for a point layer.

.NET
Go
Java
Python
TypeScript