Show / Hide Table of Contents

Interface CfnAnalysis.IGridLayoutConfigurationProperty

The configuration for a grid layout. Also called a tiled layout.

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

Visuals snap to a grid with standard spacing and alignment. Dashboards are displayed as designed, with options to fit to screen or view at actual size.

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gridlayoutconfiguration.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 gridLayoutConfigurationProperty = new GridLayoutConfigurationProperty {
                 Elements = new [] { new GridLayoutElementProperty {
                     ColumnSpan = 123,
                     ElementId = "elementId",
                     ElementType = "elementType",
                     RowSpan = 123,

                     // the properties below are optional
                     ColumnIndex = 123,
                     RowIndex = 123
                 } },

                 // the properties below are optional
                 CanvasSizeOptions = new GridLayoutCanvasSizeOptionsProperty {
                     ScreenCanvasSizeOptions = new GridLayoutScreenCanvasSizeOptionsProperty {
                         ResizeOption = "resizeOption",

                         // the properties below are optional
                         OptimizedViewPortWidth = "optimizedViewPortWidth"
                     }
                 }
             };

Synopsis

Properties

CanvasSizeOptions

The configuration for a grid layout. Also called a tiled layout.

Elements

The elements that are included in a grid layout.

Properties

CanvasSizeOptions

The configuration for a grid layout. Also called a tiled layout.

object? CanvasSizeOptions { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gridlayoutconfiguration.html#cfn-quicksight-analysis-gridlayoutconfiguration-canvassizeoptions

Elements

The elements that are included in a grid layout.

object Elements { get; }
Property Value

object

Remarks

See: http://docs.aws.amazon.com/AWSCloudFormation/latest/UserGuide/aws-properties-quicksight-analysis-gridlayoutconfiguration.html#cfn-quicksight-analysis-gridlayoutconfiguration-elements

Back to top Generated by DocFX