interface GeospatialCircleSymbolStyleProperty
| Language | Type name |
|---|---|
.NET | Amazon.CDK.Mixins.Preview.AWS.QuickSight.Mixins.CfnAnalysisPropsMixin.GeospatialCircleSymbolStyleProperty |
Go | github.com/aws/aws-cdk-go/awscdkmixinspreview/v2/awsquicksight/mixins#CfnAnalysisPropsMixin_GeospatialCircleSymbolStyleProperty |
Java | software.amazon.awscdk.mixins.preview.services.quicksight.mixins.CfnAnalysisPropsMixin.GeospatialCircleSymbolStyleProperty |
Python | aws_cdk.mixins_preview.aws_quicksight.mixins.CfnAnalysisPropsMixin.GeospatialCircleSymbolStyleProperty |
TypeScript | @aws-cdk/mixins-preview » aws_quicksight » mixins » CfnAnalysisPropsMixin » GeospatialCircleSymbolStyleProperty |
The properties for a circle symbol style.
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 geospatialCircleSymbolStyleProperty: quicksight_mixins.CfnAnalysisPropsMixin.GeospatialCircleSymbolStyleProperty = {
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 radius of the circle. |
| fill | IResolvable | Geospatial | The color and opacity values for the fill color. |
| stroke | IResolvable | Geospatial | The color and opacity values for the stroke color. |
| stroke | IResolvable | Geospatial | The width of the stroke (border). |
circleRadius?
Type:
IResolvable | Geospatial
(optional)
The radius of the circle.
fillColor?
Type:
IResolvable | Geospatial
(optional)
The color and opacity values for the fill color.
strokeColor?
Type:
IResolvable | Geospatial
(optional)
The color and opacity values for the stroke color.
strokeWidth?
Type:
IResolvable | Geospatial
(optional)
The width of the stroke (border).

.NET
Go
Java
Python
TypeScript