File tree Expand file tree Collapse file tree 3 files changed +32
-3
lines changed
Expand file tree Collapse file tree 3 files changed +32
-3
lines changed Original file line number Diff line number Diff line change 1515from .components .base .script import client_side
1616from .components .component import custom_component as memo
1717from .components .graphing import recharts as recharts
18+ from .components .graphing .victory import data as data
1819from .config import Config as Config
1920from .config import DBConfig as DBConfig
2021from .constants import Env as Env
Original file line number Diff line number Diff line change 140140switch = Switch .create
141141text_area = TextArea .create
142142upload = Upload .create
143-
143+ area = Area .create
144+ bar = Bar .create
145+ box_plot = BoxPlot .create
146+ candlestick = Candlestick .create
147+ chart = Chart .create
148+ chart_group = ChartGroup .create
149+ chart_stack = ChartStack .create
150+ error_bar = ErrorBar .create
151+ histogram = Histogram .create
152+ line = Line .create
153+ pie = Pie .create
154+ plotly = Plotly .create
155+ polar = Polar .create
156+ scatter = Scatter .create
157+ voronoi = Voronoi .create
144158box = Box .create
145159center = Center .create
146160circle = Circle .create
232246color_mode_button = ColorModeButton .create
233247color_mode_icon = ColorModeIcon .create
234248color_mode_switch = ColorModeSwitch .create
235-
236- plotly = Plotly .create
Original file line number Diff line number Diff line change 11"""Convenience functions to define layout components."""
22
33from .plotly import Plotly
4+ from .victory import (
5+ Area ,
6+ Bar ,
7+ BoxPlot ,
8+ Candlestick ,
9+ Chart ,
10+ ChartGroup ,
11+ ChartStack ,
12+ ErrorBar ,
13+ Histogram ,
14+ Line ,
15+ Pie ,
16+ Polar ,
17+ Scatter ,
18+ Voronoi ,
19+ )
420
521__all__ = [f for f in dir () if f [0 ].isupper ()] # type: ignore
You can’t perform that action at this time.
0 commit comments