reflex/pynecone/components/graphing/__init__.py
2023-01-08 23:36:51 -08:00

22 lines
351 B
Python

"""Convenience functions to define layout components."""
from .plotly import Plotly
from .victory import (
Chart,
Line,
Scatter,
Area,
Bar,
Pie,
Polar,
Candlestick,
BoxPlot,
Histogram,
ErrorBar,
ChartGroup,
ChartStack,
Voronoi,
)
__all__ = [f for f in dir() if f[0].isupper()] # type: ignore