Getting Started
Commands
Architecture
Development
Support
import altair from .abstract_chart_renderer import AbstractChartRenderer [docs] class AltairChartRenderer(AbstractChartRenderer): """ Documentation TBD """ def __init__(self) -> None: super().__init__() [docs] def render(self, fp, notation=None, params=None): chart = altair.Chart.from_dict(notation) chart.save(fp, format="svg") return fp