31 lines
833 B
Plaintext
31 lines
833 B
Plaintext
# GridPlot
|
|
|
|
|
|
## Properties
|
|
|
|
Name | Type | Description | Notes
|
|
------------ | ------------- | ------------- | -------------
|
|
**data** | **List[float]** | |
|
|
**width** | **int** | |
|
|
|
|
## Example
|
|
|
|
```python
|
|
from jfjoch_client.models.grid_plot import GridPlot
|
|
|
|
# TODO update the JSON string below
|
|
json = "{}"
|
|
# create an instance of GridPlot from a JSON string
|
|
grid_plot_instance = GridPlot.from_json(json)
|
|
# print the JSON string representation of the object
|
|
print(GridPlot.to_json())
|
|
|
|
# convert the object into a dict
|
|
grid_plot_dict = grid_plot_instance.to_dict()
|
|
# create an instance of GridPlot from a dict
|
|
grid_plot_from_dict = GridPlot.from_dict(grid_plot_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)
|
|
|
|
|