1
0

general.py 8.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264
  1. """General components for Recharts."""
  2. from __future__ import annotations
  3. from typing import Any, Dict, List, Union
  4. from reflex.components.component import MemoizationLeaf
  5. from reflex.constants.colors import Color
  6. from reflex.event import EventHandler, no_args_event_spec
  7. from reflex.vars.base import LiteralVar, Var
  8. from .recharts import (
  9. LiteralAnimationEasing,
  10. LiteralIconType,
  11. LiteralLayout,
  12. LiteralLegendAlign,
  13. LiteralPosition,
  14. LiteralVerticalAlign,
  15. Recharts,
  16. )
  17. class ResponsiveContainer(Recharts, MemoizationLeaf):
  18. """A base class for responsive containers in Recharts."""
  19. tag = "ResponsiveContainer"
  20. alias = "RechartsResponsiveContainer"
  21. # The aspect ratio of the container. The final aspect ratio of the SVG element will be (width / height) * aspect. Number
  22. aspect: Var[int]
  23. # The width of chart container. Can be a number or string. Default: "100%"
  24. width: Var[Union[int, str]]
  25. # The height of chart container. Can be a number or string. Default: "100%"
  26. height: Var[Union[int, str]]
  27. # The minimum width of chart container. Number or string.
  28. min_width: Var[Union[int, str]]
  29. # The minimum height of chart container. Number or string.
  30. min_height: Var[Union[int, str]]
  31. # If specified a positive number, debounced function will be used to handle the resize event. Default: 0
  32. debounce: Var[int]
  33. # If specified provides a callback providing the updated chart width and height values.
  34. on_resize: EventHandler[no_args_event_spec]
  35. # Valid children components
  36. _valid_children: List[str] = [
  37. "AreaChart",
  38. "BarChart",
  39. "LineChart",
  40. "PieChart",
  41. "RadarChart",
  42. "RadialBarChart",
  43. "ScatterChart",
  44. "Treemap",
  45. "ComposedChart",
  46. "FunnelChart",
  47. ]
  48. class Legend(Recharts):
  49. """A Legend component in Recharts."""
  50. tag = "Legend"
  51. alias = "RechartsLegend"
  52. # The width of legend container. Number
  53. width: Var[int]
  54. # The height of legend container. Number
  55. height: Var[int]
  56. # The layout of legend items. 'horizontal' | 'vertical'. Default: "horizontal"
  57. layout: Var[LiteralLayout]
  58. # The alignment of legend items in 'horizontal' direction, which can be 'left', 'center', 'right'. Default: "center"
  59. align: Var[LiteralLegendAlign]
  60. # The alignment of legend items in 'vertical' direction, which can be 'top', 'middle', 'bottom'. Default: "bottom"
  61. vertical_align: Var[LiteralVerticalAlign]
  62. # The size of icon in each legend item. Default: 14
  63. icon_size: Var[int]
  64. # The type of icon in each legend item. 'line' | 'plainline' | 'square' | 'rect' | 'circle' | 'cross' | 'diamond' | 'star' | 'triangle' | 'wye'
  65. icon_type: Var[LiteralIconType]
  66. # The source data of the content to be displayed in the legend, usually calculated internally. Default: []
  67. payload: Var[List[Dict[str, Any]]]
  68. # The width of chart container, usually calculated internally.
  69. chart_width: Var[int]
  70. # The height of chart container, usually calculated internally.
  71. chart_height: Var[int]
  72. # The margin of chart container, usually calculated internally.
  73. margin: Var[Dict[str, Any]]
  74. # The customized event handler of click on the items in this group
  75. on_click: EventHandler[no_args_event_spec]
  76. # The customized event handler of mousedown on the items in this group
  77. on_mouse_down: EventHandler[no_args_event_spec]
  78. # The customized event handler of mouseup on the items in this group
  79. on_mouse_up: EventHandler[no_args_event_spec]
  80. # The customized event handler of mousemove on the items in this group
  81. on_mouse_move: EventHandler[no_args_event_spec]
  82. # The customized event handler of mouseover on the items in this group
  83. on_mouse_over: EventHandler[no_args_event_spec]
  84. # The customized event handler of mouseout on the items in this group
  85. on_mouse_out: EventHandler[no_args_event_spec]
  86. # The customized event handler of mouseenter on the items in this group
  87. on_mouse_enter: EventHandler[no_args_event_spec]
  88. # The customized event handler of mouseleave on the items in this group
  89. on_mouse_leave: EventHandler[no_args_event_spec]
  90. class GraphingTooltip(Recharts):
  91. """A Tooltip component in Recharts."""
  92. tag = "Tooltip"
  93. alias = "RechartsTooltip"
  94. # The separator between name and value. Default: ":"
  95. separator: Var[str]
  96. # The offset size of tooltip. Number. Default: 10
  97. offset: Var[int]
  98. # When an item of the payload has value null or undefined, this item won't be displayed. Default: True
  99. filter_null: Var[bool]
  100. # If set false, no cursor will be drawn when tooltip is active. Default: {"strokeWidth": 1, "fill": rx.color("gray", 3)}
  101. cursor: Var[Union[Dict[str, Any], bool]] = LiteralVar.create(
  102. {
  103. "strokeWidth": 1,
  104. "fill": Color("gray", 3),
  105. }
  106. )
  107. # The box of viewing area, which has the shape of {x: someVal, y: someVal, width: someVal, height: someVal}, usually calculated internally.
  108. view_box: Var[Dict[str, Any]]
  109. # The style of default tooltip content item which is a li element. Default: {"color": rx.color("gray", 12)}
  110. item_style: Var[Dict[str, Any]] = LiteralVar.create(
  111. {
  112. "color": Color("gray", 12),
  113. }
  114. )
  115. # The style of tooltip wrapper which is a dom element. Default: {}
  116. wrapper_style: Var[Dict[str, Any]]
  117. # The style of tooltip content which is a dom element. Default: {"background": rx.color("gray", 1), "borderColor": rx.color("gray", 4), "borderRadius": "8px"}
  118. content_style: Var[Dict[str, Any]] = LiteralVar.create(
  119. {
  120. "background": Color("gray", 1),
  121. "borderColor": Color("gray", 4),
  122. "borderRadius": "8px",
  123. }
  124. )
  125. # The style of default tooltip label which is a p element. Default: {"color": rx.color("gray", 11)}
  126. label_style: Var[Dict[str, Any]] = LiteralVar.create({"color": Color("gray", 11)})
  127. # This option allows the tooltip to extend beyond the viewBox of the chart itself. Default: {"x": False, "y": False}
  128. allow_escape_view_box: Var[Dict[str, bool]]
  129. # If set true, the tooltip is displayed. If set false, the tooltip is hidden, usually calculated internally. Default: False
  130. active: Var[bool]
  131. # If this field is set, the tooltip position will be fixed and will not move anymore.
  132. position: Var[Dict[str, Any]]
  133. # The coordinate of tooltip which is usually calculated internally. Default: {"x": 0, "y": 0}
  134. coordinate: Var[Dict[str, Any]]
  135. # If set false, animation of tooltip will be disabled. Default: True
  136. is_animation_active: Var[bool]
  137. # Specifies the duration of animation, the unit of this option is ms. Default: 1500
  138. animation_duration: Var[int]
  139. # The type of easing function. Default: "ease"
  140. animation_easing: Var[LiteralAnimationEasing]
  141. class Label(Recharts):
  142. """A Label component in Recharts."""
  143. tag = "Label"
  144. alias = "RechartsLabel"
  145. # The box of viewing area, which has the shape of {x: someVal, y: someVal, width: someVal, height: someVal}, usually calculated internally.
  146. view_box: Var[Dict[str, Any]]
  147. # The value of label, which can be specified by this props or the children of <Label />
  148. value: Var[str]
  149. # The offset of label which can be specified by this props or the children of <Label />
  150. offset: Var[int]
  151. # The position of label which can be specified by this props or the children of <Label />
  152. position: Var[LiteralPosition]
  153. class LabelList(Recharts):
  154. """A LabelList component in Recharts."""
  155. tag = "LabelList"
  156. alias = "RechartsLabelList"
  157. # The key of a group of label values in data.
  158. data_key: Var[Union[str, int]]
  159. # The position of each label relative to it view box. "Top" | "left" | "right" | "bottom" | "inside" | "outside" | "insideLeft" | "insideRight" | "insideTop" | "insideBottom" | "insideTopLeft" | "insideBottomLeft" | "insideTopRight" | "insideBottomRight" | "insideStart" | "insideEnd" | "end" | "center"
  160. position: Var[LiteralPosition]
  161. # The offset to the specified "position". Default: 5
  162. offset: Var[int]
  163. # The fill color of each label. Default: rx.color("gray", 10)
  164. fill: Var[Union[str, Color]] = LiteralVar.create(Color("gray", 10))
  165. # The stroke color of each label. Default: "none"
  166. stroke: Var[Union[str, Color]] = LiteralVar.create("none")
  167. class Cell(Recharts):
  168. """A Cell component in Recharts."""
  169. tag = "Cell"
  170. alias = "RechartsCell"
  171. # The presentation attribute of a rectangle in bar or a sector in pie.
  172. fill: Var[str | Color]
  173. # The presentation attribute of a rectangle in bar or a sector in pie.
  174. stroke: Var[str | Color]
  175. responsive_container = ResponsiveContainer.create
  176. legend = Legend.create
  177. graphing_tooltip = GraphingTooltip.create
  178. label = Label.create
  179. label_list = LabelList.create
  180. cell = Cell.create