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

default props comment for CartesianGrid #4126

Merged
merged 1 commit into from
Oct 8, 2024
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
14 changes: 7 additions & 7 deletions reflex/components/recharts/cartesian.py
Original file line number Diff line number Diff line change
Expand Up @@ -779,28 +779,28 @@ class CartesianGrid(Grid):

alias = "RechartsCartesianGrid"

# The horizontal line configuration.
# The horizontal line configuration. Default: True
horizontal: Var[bool]

# The vertical line configuration.
# The vertical line configuration. Default: True
vertical: Var[bool]

# The x-coordinates in pixel values of all vertical lines.
# The x-coordinates in pixel values of all vertical lines. Default: []
vertical_points: Var[List[Union[str, int]]]

# The x-coordinates in pixel values of all vertical lines.
# The x-coordinates in pixel values of all vertical lines. Default: []
horizontal_points: Var[List[Union[str, int]]]

# The background of grid.
fill: Var[Union[str, Color]]

# The opacity of the background used to fill the space between grid lines
# The opacity of the background used to fill the space between grid lines.
fill_opacity: Var[float]

# The pattern of dashes and gaps used to paint the lines of the grid
# The pattern of dashes and gaps used to paint the lines of the grid.
stroke_dasharray: Var[str]

# the stroke color of grid
# the stroke color of grid. Default: rx.color("gray", 7)
stroke: Var[Union[str, Color]] = LiteralVar.create(Color("gray", 7))


Expand Down
14 changes: 7 additions & 7 deletions reflex/components/recharts/cartesian.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -2142,14 +2142,14 @@ class CartesianGrid(Grid):

Args:
*children: The children of the component.
horizontal: The horizontal line configuration.
vertical: The vertical line configuration.
vertical_points: The x-coordinates in pixel values of all vertical lines.
horizontal_points: The x-coordinates in pixel values of all vertical lines.
horizontal: The horizontal line configuration. Default: True
vertical: The vertical line configuration. Default: True
vertical_points: The x-coordinates in pixel values of all vertical lines. Default: []
horizontal_points: The x-coordinates in pixel values of all vertical lines. Default: []
fill: The background of grid.
fill_opacity: The opacity of the background used to fill the space between grid lines
stroke_dasharray: The pattern of dashes and gaps used to paint the lines of the grid
stroke: the stroke color of grid
fill_opacity: The opacity of the background used to fill the space between grid lines.
stroke_dasharray: The pattern of dashes and gaps used to paint the lines of the grid.
stroke: the stroke color of grid. Default: rx.color("gray", 7)
x: The x-coordinate of grid.
y: The y-coordinate of grid.
width: The width of grid.
Expand Down
Loading