__init__.py 341 B

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