12345678910111213141516171819202122232425262728293031323334 |
- from typing import Dict
- from ..element import Element
- class EChart(Element, component='echart.js', libraries=['lib/echarts/echarts.min.js']):
- def __init__(self, options: Dict) -> None:
- """Apache EChart
- An element to create a chart using `ECharts <https://echarts.apache.org/>`_.
- Updates can be pushed to the chart by changing the `options` property.
- After data has changed, call the `update` method to refresh the chart.
- :param options: dictionary of EChart options
- """
- super().__init__()
- self._props['options'] = options
- self._classes = ['nicegui-echart']
- @property
- def options(self) -> Dict:
- return self._props['options']
- def update(self) -> None:
- super().update()
- self.run_method('update_chart')
- def resize(self) -> None:
- """Resize the chart to fit the container.
- Usually, this does not need to be called manually, as the chart is resized automatically when the window is resized.
- """
- self.run_method('resize_chart')
|