You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/Print/print.md
+66Lines changed: 66 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -462,6 +462,72 @@ int main() {
462
462
463
463
---
464
464
465
+
## Print Text on Plots (`Figure::print`)
466
+
467
+
The plotting library includes a `print()` method for adding text annotations directly onto graphs. This is different from the global `print()` function—it's a method on `Figure` objects.
While `print` and `pprint` are convenient for debugging and output, they may not be suitable for performance-sensitive logging. For large `var` objects or containers, consider serializing only the necessary parts to minimize overhead.
0 commit comments