LineChart
Introduction
Linechart
is a Supervisely widget that allows for visualizing data as a line chart. It supports data in pandas dataframe format or a Python list of dictionaries with a specific structure. This widget could be considered an advanced version of a LinePlot
widget with the support of ApexCharts library.
The widget allows for customization of the chart title, axis titles, and color scheme. Linechart
also supports zooming, panning, and downloading the chart as png, svg, or csv. Additionally, it can detect clicks on data points and respond to them through Python code
Function signature
Parameters
Parameters | Type | Description |
---|---|---|
|
| Line chart title |
|
| List of series including names and lists of |
|
| Enable zoom on |
|
| Set line type (straight or curved) |
|
| Set line width |
|
| Set point markers size |
|
| If |
|
| Set type of divisions on |
|
| Set title for the |
|
| Set title for the |
|
| Set autoscaling of the Y axis |
|
| Widget height |
|
| Set number of decimals in float values of |
|
| The representation of xy coordinates. Default as a dictionary. |
title
Line chart title
type: str
series
List of series including names and lists of X, Y coordinates
type: list
zoom
Enable zoom on Linechart
type: bool
default False
stroke_curve
Set line type (straight or curved)
type: Literal["smooth", "straight"]
default "smooth"
stroke_width
Set line width
type: int
default 2
markers_size
Set point markers size
type: int
default 4
data_labels
If True
it will display Y
value of data for each
type: bool
default False
xaxis_type
Set type of divisions on X axis
type: Literal["numeric", "category", "datetime"]
default numeric
xaxis_title
Set title for the X axis
type: str
default None
yaxis_title
Set title for the Y axis
type: str
default None
yaxis_autorescale
Set autoscaling of the Y axis
type: bool
default True
height
Widget height
type: Union[int, str]
default 350
decimalsInFloat
Set number of decimals in float values of Y
axis
type: int
default 2
Methods and attributes
Attributes and Methods | Description |
---|---|
| Update chart |
| Get value of clicked datapoint. |
| Get clicked datapoint. |
| Set chart title. |
| Add new series to chart. |
| Add batch of series to chart. |
| Set series to chart. |
| Set colors for series in chart. |
| Decorator function to handle chart click. |
Mini App Example
You can find this example in our Github repository:
ui-widgets-demos/charts and plots/001_line_chart/src/main.py
Import libraries
Init API client
First, we load environment variables with credentials and init API for communicating with Supervisely Instance:
Prepare series for chart
Initialize LineChart
widget
LineChart
widgetCreate app layout
Prepare a layout for app using Card
widget with the content
parameter.
Create app using layout
Create an app object with layout parameter.
Add functions to control widgets from python code
Last updated