__init__.py 351 B

123456789101112131415161718192021
  1. """Convenience functions to define layout components."""
  2. from .plotly import Plotly
  3. from .victory import (
  4. Area,
  5. Bar,
  6. BoxPlot,
  7. Candlestick,
  8. Chart,
  9. ChartGroup,
  10. ChartStack,
  11. ErrorBar,
  12. Histogram,
  13. Line,
  14. Pie,
  15. Polar,
  16. Scatter,
  17. Voronoi,
  18. )
  19. __all__ = [f for f in dir() if f[0].isupper()] # type: ignore