From c9a113807df7294f12cb8322329383c25f422288 Mon Sep 17 00:00:00 2001 From: sbosse Date: Mon, 21 Jul 2025 22:54:06 +0200 Subject: [PATCH] Mon 21 Jul 22:43:21 CEST 2025 --- .../timeline/items/rangeOverflowItem.html | 54 +++++++++++++++++++ 1 file changed, 54 insertions(+) create mode 100644 js/dos/ext/vis/examples/timeline/items/rangeOverflowItem.html diff --git a/js/dos/ext/vis/examples/timeline/items/rangeOverflowItem.html b/js/dos/ext/vis/examples/timeline/items/rangeOverflowItem.html new file mode 100644 index 0000000..12582a6 --- /dev/null +++ b/js/dos/ext/vis/examples/timeline/items/rangeOverflowItem.html @@ -0,0 +1,54 @@ + + + + Timeline | Range overflow + + + + + + + + + +

+ In case of ranges being spread over a wide range of time, it can be interesting to have the text contents of the ranges overflow the box. This can be achieved by changing the overflow property of the contents to visible with css: +

+
+.vis-item .vis-item-overflow {
+  overflow: visible;
+}
+
+ +
+ + + + \ No newline at end of file