Show / Hide Table of Contents

Interface CfnDashboard.IGeospatialLineStyleProperty

The visualization style for a line layer.

Namespace: Amazon.CDK.AWS.QuickSight
Assembly: Amazon.CDK.Lib.dll
Syntax (csharp)
public interface CfnDashboard.IGeospatialLineStyleProperty
Syntax (vb)
Public Interface CfnDashboard.IGeospatialLineStyleProperty
Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-dashboard-geospatiallinestyle.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.AWS.QuickSight;

             var geospatialLineStyleProperty = new GeospatialLineStyleProperty {
                 LineSymbolStyle = new GeospatialLineSymbolStyleProperty {
                     FillColor = new GeospatialColorProperty {
                         Categorical = new GeospatialCategoricalColorProperty {
                             CategoryDataColors = new [] { new GeospatialCategoricalDataColorProperty {
                                 Color = "color",
                                 DataValue = "dataValue"
                             } },

                             // the properties below are optional
                             DefaultOpacity = 123,
                             NullDataSettings = new GeospatialNullDataSettingsProperty {
                                 SymbolStyle = new GeospatialNullSymbolStyleProperty {
                                     FillColor = "fillColor",
                                     StrokeColor = "strokeColor",
                                     StrokeWidth = 123
                                 }
                             },
                             NullDataVisibility = "nullDataVisibility"
                         },
                         Gradient = new GeospatialGradientColorProperty {
                             StepColors = new [] { new GeospatialGradientStepColorProperty {
                                 Color = "color",
                                 DataValue = 123
                             } },

                             // the properties below are optional
                             DefaultOpacity = 123,
                             NullDataSettings = new GeospatialNullDataSettingsProperty {
                                 SymbolStyle = new GeospatialNullSymbolStyleProperty {
                                     FillColor = "fillColor",
                                     StrokeColor = "strokeColor",
                                     StrokeWidth = 123
                                 }
                             },
                             NullDataVisibility = "nullDataVisibility"
                         },
                         Solid = new GeospatialSolidColorProperty {
                             Color = "color",

                             // the properties below are optional
                             State = "state"
                         }
                     },
                     LineWidth = new GeospatialLineWidthProperty {
                         LineWidth = 123
                     }
                 }
             };

Synopsis

Properties

LineSymbolStyle

The symbol style for a line style.

Properties

LineSymbolStyle

The symbol style for a line style.

object? LineSymbolStyle { get; }
Property Value

object

Remarks

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

Back to top Generated by DocFX