Skip to content

Commit

Permalink
default props comment for CartesianGrid (#4126)
Browse files Browse the repository at this point in the history
  • Loading branch information
carlosabadia authored Oct 8, 2024
1 parent 02d4428 commit 4982b45
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 14 deletions.
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

0 comments on commit 4982b45

Please sign in to comment.