# ApiColorGridWidget The Color Grid widget displays colored cards arranged in rows and columns. ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **id** | **str** | Identifier of the widget. | [optional] **type** | [**WidgetType**](WidgetType.md) | | [optional] **title** | **str** | Title of the widget | [optional] **visual_mode** | [**VisualMode**](VisualMode.md) | | [optional] **embed_url** | **str** | When `isEmbedded` is set to `true`, an `embedUrl` is provided. | [optional] [readonly] **is_embedded** | **bool** | Set to `true` if widget is marked as embedded; otherwise, set to `false`. | [optional] **metric_group** | [**MetricGroup**](MetricGroup.md) | | [optional] **direction** | [**DashboardMetricDirection**](DashboardMetricDirection.md) | | [optional] **metric** | [**DashboardMetric**](DashboardMetric.md) | | [optional] **filters** | **Dict[str, List[object]]** | (Optional) Specifies the filters applied to the widget. When present, the `filters` property displays. Each filter object has two properties: `filterProperty` and `filterValue`. The `filterProperty` can be values like Agents, Agent Groups, Tests, Monitors, etc. The `filterValue` represents theIdentifierof the selected property. | [optional] **measure** | [**ApiWidgetMeasure**](ApiWidgetMeasure.md) | | [optional] **fixed_timespan** | [**ApiDuration**](ApiDuration.md) | | [optional] **api_link** | **str** | | [optional] [readonly] **should_exclude_alert_suppression_windows** | **bool** | Excludes alert suppression window data if set to `true`. | [optional] **links** | [**SelfLinksLinks**](SelfLinksLinks.md) | | [optional] **min_scale** | **float** | Mininum scale configured in the widget. | [optional] **max_scale** | **float** | Maximum scale configured in the widget. | [optional] **unit** | [**ApiWidgetFixedYScalePrefix**](ApiWidgetFixedYScalePrefix.md) | | [optional] **cards** | [**ApiAggregateProperty**](ApiAggregateProperty.md) | | [optional] **group_cards_by** | [**ApiAggregateProperty**](ApiAggregateProperty.md) | | [optional] **columns** | **int** | Number of columns: 1 or 2. | [optional] **limit** | **int** | Limit configured in the widget. | [optional] **sort_by** | [**WidgetSortProperty**](WidgetSortProperty.md) | | [optional] **sort_direction** | [**WidgetSortDirection**](WidgetSortDirection.md) | | [optional] **data_source** | [**ColorGridDatasource**](ColorGridDatasource.md) | | [optional] ## Example ```python from dashboards_api.models.api_color_grid_widget import ApiColorGridWidget # TODO update the JSON string below json = "{}" # create an instance of ApiColorGridWidget from a JSON string api_color_grid_widget_instance = ApiColorGridWidget.from_json(json) # print the JSON string representation of the object print ApiColorGridWidget.to_json() # convert the object into a dict api_color_grid_widget_dict = api_color_grid_widget_instance.to_dict() # create an instance of ApiColorGridWidget from a dict api_color_grid_widget_form_dict = api_color_grid_widget.from_dict(api_color_grid_widget_dict) ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)