Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove victory charts #1945

Merged
merged 2 commits into from
Oct 24, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 0 additions & 1 deletion reflex/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,6 @@
from .components.base.script import client_side
from .components.component import custom_component as memo
from .components.graphing import recharts as recharts
from .components.graphing.victory import data as data
from .config import Config as Config
from .config import DBConfig as DBConfig
from .constants import Env as Env
Expand Down
14 changes: 0 additions & 14 deletions reflex/components/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -140,21 +140,7 @@
switch = Switch.create
text_area = TextArea.create
upload = Upload.create
area = Area.create
bar = Bar.create
box_plot = BoxPlot.create
candlestick = Candlestick.create
chart = Chart.create
chart_group = ChartGroup.create
chart_stack = ChartStack.create
error_bar = ErrorBar.create
histogram = Histogram.create
line = Line.create
pie = Pie.create
plotly = Plotly.create
polar = Polar.create
scatter = Scatter.create
voronoi = Voronoi.create
box = Box.create
center = Center.create
circle = Circle.create
Expand Down
16 changes: 0 additions & 16 deletions reflex/components/graphing/__init__.py
Original file line number Diff line number Diff line change
@@ -1,21 +1,5 @@
"""Convenience functions to define layout components."""

from .plotly import Plotly
from .victory import (
Area,
Bar,
BoxPlot,
Candlestick,
Chart,
ChartGroup,
ChartStack,
ErrorBar,
Histogram,
Line,
Pie,
Polar,
Scatter,
Voronoi,
)

__all__ = [f for f in dir() if f[0].isupper()] # type: ignore
Loading
Loading