This commit is contained in:
carlosabadia 2024-10-10 15:19:48 +02:00
parent a46548d049
commit 0b10471b58
2 changed files with 4 additions and 2 deletions

View File

@ -343,7 +343,7 @@ class PolarRadiusAxis(Recharts):
_valid_children: List[str] = ["Label"]
# The domain of the polar radius axis, specifying the minimum and maximum values. Default: [0, "auto"]
domain: Var[List[int]]
domain: Var[List[Union[int, str]]]
# The stroke color of axis. Default: rx.color("gray", 10)
stroke: Var[Union[str, Color]] = LiteralVar.create(Color("gray", 10))

View File

@ -545,7 +545,9 @@ class PolarRadiusAxis(Recharts):
],
]
] = None,
domain: Optional[Union[List[int], Var[List[int]]]] = None,
domain: Optional[
Union[List[Union[int, str]], Var[List[Union[int, str]]]]
] = None,
stroke: Optional[Union[Color, Var[Union[Color, str]], str]] = None,
style: Optional[Style] = None,
key: Optional[Any] = None,