mirror of
https://github.com/thousandeyes/thousandeyes-sdk-python.git
synced 2026-06-20 09:56:51 +00:00
33 lines
1.7 KiB
Markdown
33 lines
1.7 KiB
Markdown
# ApiStackedAreaChartWidgetProperties
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**type** | **str** | Time Series: Stacked Area widget type |
|
|
**group_by** | [**ApiAggregateProperty**](ApiAggregateProperty.md) | | [optional]
|
|
**data_source** | [**StackedAreaChartDatasource**](StackedAreaChartDatasource.md) | | [optional]
|
|
**show_submetrics** | **bool** | Controls how metrics with submetric components are displayed. If `true` (default), the widget displays one chart per group. If `false`, the widget displays all submetrics in a single chart. For metrics without submetric components, this field is ignored and returned as `null`. | [optional] [default to True]
|
|
|
|
## Example
|
|
|
|
```python
|
|
from thousandeyes_sdk.dashboards.models.api_stacked_area_chart_widget_properties import ApiStackedAreaChartWidgetProperties
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of ApiStackedAreaChartWidgetProperties from a JSON string
|
|
api_stacked_area_chart_widget_properties_instance = ApiStackedAreaChartWidgetProperties.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(ApiStackedAreaChartWidgetProperties.to_json())
|
|
|
|
# convert the object into a dict
|
|
api_stacked_area_chart_widget_properties_dict = api_stacked_area_chart_widget_properties_instance.to_dict()
|
|
# create an instance of ApiStackedAreaChartWidgetProperties from a dict
|
|
api_stacked_area_chart_widget_properties_from_dict = ApiStackedAreaChartWidgetProperties.from_dict(api_stacked_area_chart_widget_properties_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)
|
|
|
|
|