@@ -482,8 +482,59 @@ class LabelList(Recharts):
482482 """
483483 ...
484484
485+ class Cell (Recharts ):
486+ @overload
487+ @classmethod
488+ def create ( # type: ignore
489+ cls ,
490+ * children ,
491+ fill : Optional [Union [Var [str ], str ]] = None ,
492+ stroke : Optional [Union [Var [str ], str ]] = None ,
493+ style : Optional [Style ] = None ,
494+ key : Optional [Any ] = None ,
495+ id : Optional [Any ] = None ,
496+ class_name : Optional [Any ] = None ,
497+ autofocus : Optional [bool ] = None ,
498+ custom_attrs : Optional [Dict [str , Union [Var , Any ]]] = None ,
499+ on_blur : Optional [EventType [[], BASE_STATE ]] = None ,
500+ on_click : Optional [EventType [[], BASE_STATE ]] = None ,
501+ on_context_menu : Optional [EventType [[], BASE_STATE ]] = None ,
502+ on_double_click : Optional [EventType [[], BASE_STATE ]] = None ,
503+ on_focus : Optional [EventType [[], BASE_STATE ]] = None ,
504+ on_mount : Optional [EventType [[], BASE_STATE ]] = None ,
505+ on_mouse_down : Optional [EventType [[], BASE_STATE ]] = None ,
506+ on_mouse_enter : Optional [EventType [[], BASE_STATE ]] = None ,
507+ on_mouse_leave : Optional [EventType [[], BASE_STATE ]] = None ,
508+ on_mouse_move : Optional [EventType [[], BASE_STATE ]] = None ,
509+ on_mouse_out : Optional [EventType [[], BASE_STATE ]] = None ,
510+ on_mouse_over : Optional [EventType [[], BASE_STATE ]] = None ,
511+ on_mouse_up : Optional [EventType [[], BASE_STATE ]] = None ,
512+ on_scroll : Optional [EventType [[], BASE_STATE ]] = None ,
513+ on_unmount : Optional [EventType [[], BASE_STATE ]] = None ,
514+ ** props ,
515+ ) -> "Cell" :
516+ """Create the component.
517+
518+ Args:
519+ *children: The children of the component.
520+ fill: The presentation attribute of a rectangle in bar or a sector in pie.
521+ stroke: The presentation attribute of a rectangle in bar or a sector in pie.
522+ style: The style of the component.
523+ key: A unique key for the component.
524+ id: The id for the component.
525+ class_name: The class name for the component.
526+ autofocus: Whether the component should take the focus once the page is loaded
527+ custom_attrs: custom attribute
528+ **props: The props of the component.
529+
530+ Returns:
531+ The component.
532+ """
533+ ...
534+
485535responsive_container = ResponsiveContainer .create
486536legend = Legend .create
487537graphing_tooltip = GraphingTooltip .create
488538label = Label .create
489539label_list = LabelList .create
540+ cell = Cell .create
0 commit comments