Natan 1 سال پیش
والد
کامیت
d4fac38b9d
1فایلهای تغییر یافته به همراه2 افزوده شده و 2 حذف شده
  1. 2 2
      website/more_documentation/chart_documentation.py

+ 2 - 2
website/more_documentation/chart_documentation.py

@@ -47,9 +47,9 @@ def more() -> None:
     def drag() -> None:
         def handle_drag_drop(e):
             if e.event_type == 'point_drag_start':
-                ui.notify('Point drag event started.')
+                ui.notify('Point drag started.')
             elif e.event_type == 'point_drag':
-                ui.notify(f"You dragged a point {e.point_index} in series {e.series_index}.")
+                ui.notify(f"You are dragging point {e.point_index} in series {e.series_index}.")
             elif e.event_type == 'point_drop':
                 ui.notify(f"You dropped point {e.point_index} in series {e.series_index} at [{e.point_x},{e.point_y}].")