Show / Hide Table of Contents

Interface CfnDashboardPropsMixin.IGeospatialLineSymbolStyleProperty

The symbol style for a line layer.

Namespace: Amazon.CDK.CfnPropertyMixins.AWS.QuickSight
Assembly: Amazon.CDK.CfnPropertyMixins.dll
Syntax (csharp)
public interface CfnDashboardPropsMixin.IGeospatialLineSymbolStyleProperty
Syntax (vb)
Public Interface CfnDashboardPropsMixin.IGeospatialLineSymbolStyleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinesymbolstyle.html

ExampleMetadata: fixture=_generated

Examples
// The code below shows an example of how to instantiate this type.
             // The values are placeholders you should change.
             using Amazon.CDK.CfnPropertyMixins.AWS.QuickSight;

             var geospatialLineSymbolStyleProperty = new GeospatialLineSymbolStyleProperty {
                 FillColor = new GeospatialColorProperty {
                     Categorical = new GeospatialCategoricalColorProperty {
                         CategoryDataColors = new [] { new GeospatialCategoricalDataColorProperty {
                             Color = "color",
                             DataValue = "dataValue"
                         } },
                         DefaultOpacity = 123,
                         NullDataSettings = new GeospatialNullDataSettingsProperty {
                             SymbolStyle = new GeospatialNullSymbolStyleProperty {
                                 FillColor = "fillColor",
                                 StrokeColor = "strokeColor",
                                 StrokeWidth = 123
                             }
                         },
                         NullDataVisibility = "nullDataVisibility"
                     },
                     Gradient = new GeospatialGradientColorProperty {
                         DefaultOpacity = 123,
                         NullDataSettings = new GeospatialNullDataSettingsProperty {
                             SymbolStyle = new GeospatialNullSymbolStyleProperty {
                                 FillColor = "fillColor",
                                 StrokeColor = "strokeColor",
                                 StrokeWidth = 123
                             }
                         },
                         NullDataVisibility = "nullDataVisibility",
                         StepColors = new [] { new GeospatialGradientStepColorProperty {
                             Color = "color",
                             DataValue = 123
                         } }
                     },
                     Solid = new GeospatialSolidColorProperty {
                         Color = "color",
                         State = "state"
                     }
                 },
                 LineWidth = new GeospatialLineWidthProperty {
                     LineWidth = 123
                 }
             };

Synopsis

Properties

FillColor

The color and opacity values for the fill color.

LineWidth

The width value for a line.

Properties

FillColor

The color and opacity values for the fill color.

object? FillColor { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinesymbolstyle.html#cfn-quicksight-dashboard-geospatiallinesymbolstyle-fillcolor

Type union: either IResolvable or CfnDashboardPropsMixin.IGeospatialColorProperty

LineWidth

The width value for a line.

object? LineWidth { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinesymbolstyle.html#cfn-quicksight-dashboard-geospatiallinesymbolstyle-linewidth

Type union: either IResolvable or CfnDashboardPropsMixin.IGeospatialLineWidthProperty

Back to top Generated by DocFX