interface FreeFormLayoutConfigurationProperty
| Language | Type name | 
|---|---|
  .NET | Amazon.CDK.AWS.QuickSight.CfnDashboard.FreeFormLayoutConfigurationProperty | 
  Java | software.amazon.awscdk.services.quicksight.CfnDashboard.FreeFormLayoutConfigurationProperty | 
  Python | aws_cdk.aws_quicksight.CfnDashboard.FreeFormLayoutConfigurationProperty | 
  TypeScript  | @aws-cdk/aws-quicksight » CfnDashboard » FreeFormLayoutConfigurationProperty | 
The configuration of a free-form layout.
Example
// The code below shows an example of how to instantiate this type.
// The values are placeholders you should change.
import * as quicksight from '@aws-cdk/aws-quicksight';
const freeFormLayoutConfigurationProperty: quicksight.CfnDashboard.FreeFormLayoutConfigurationProperty = {
  elements: [{
    elementId: 'elementId',
    elementType: 'elementType',
    height: 'height',
    width: 'width',
    xAxisLocation: 'xAxisLocation',
    yAxisLocation: 'yAxisLocation',
    // the properties below are optional
    backgroundStyle: {
      color: 'color',
      visibility: 'visibility',
    },
    borderStyle: {
      color: 'color',
      visibility: 'visibility',
    },
    loadingAnimation: {
      visibility: 'visibility',
    },
    renderingRules: [{
      configurationOverrides: {
        visibility: 'visibility',
      },
      expression: 'expression',
    }],
    selectedBorderStyle: {
      color: 'color',
      visibility: 'visibility',
    },
    visibility: 'visibility',
  }],
  // the properties below are optional
  canvasSizeOptions: {
    screenCanvasSizeOptions: {
      optimizedViewPortWidth: 'optimizedViewPortWidth',
    },
  },
};
Properties
| Name | Type | Description | 
|---|---|---|
| elements | IResolvable | IResolvable | Free[] | The elements that are included in a free-form layout. | 
| canvas | IResolvable | Free | CfnDashboard.FreeFormLayoutConfigurationProperty.CanvasSizeOptions. | 
elements
Type:
IResolvable | IResolvable | Free[]
The elements that are included in a free-form layout.
canvasSizeOptions?
Type:
IResolvable | Free
(optional)
CfnDashboard.FreeFormLayoutConfigurationProperty.CanvasSizeOptions.

 .NET
 Java
 Python
 TypeScript