Sha256: 02cd7eaae41942275a805a046341e91c3215f3cb9418de0342c8c16e8d105427

Contents?: true

Size: 1003 Bytes

Versions: 5

Compression:

Stored size: 1003 Bytes

Contents

# DatadogAPIClient::V1::WidgetLayout

## Properties

| Name | Type | Description | Notes |
| ---- | ---- | ----------- | ----- |
| **height** | **Integer** | The height of the widget. Should be a non-negative integer. |  |
| **is_column_break** | **Boolean** | Whether the widget should be the first one on the second column in high density or not. **Note**: Only for the **new dashboard layout** and only one widget in the dashboard should have this property set to `true`. | [optional] |
| **width** | **Integer** | The width of the widget. Should be a non-negative integer. |  |
| **x** | **Integer** | The position of the widget on the x (horizontal) axis. Should be a non-negative integer. |  |
| **y** | **Integer** | The position of the widget on the y (vertical) axis. Should be a non-negative integer. |  |

## Example

```ruby
require 'datadog_api_client/v1'

instance = DatadogAPIClient::V1::WidgetLayout.new(
  height: 0,
  is_column_break: null,
  width: 0,
  x: 0,
  y: 0
)
```

Version data entries

5 entries across 5 versions & 1 rubygems

Version Path
datadog_api_client-1.4.0 docs/v1/WidgetLayout.md
datadog_api_client-1.3.0 docs/v1/WidgetLayout.md
datadog_api_client-1.2.0 docs/v1/WidgetLayout.md
datadog_api_client-1.1.0 docs/v1/WidgetLayout.md
datadog_api_client-1.0.0 docs/v1/WidgetLayout.md