LogicMachine Forum
New widgets - Printable Version

+- LogicMachine Forum (https://forum.logicmachine.net)
+-- Forum: LogicMachine eco-system (https://forum.logicmachine.net/forumdisplay.php?fid=1)
+--- Forum: Visu beta testing (https://forum.logicmachine.net/forumdisplay.php?fid=24)
+--- Thread: New widgets (/showthread.php?tid=5875)

Pages: 1 2


RE: New widgets - Chandrias - 04.09.2025

First of all, let me say that I like the improvements in the new Visu app.
Further to that, allow me to suggest the following:

1) I guess that the "Text input", could be also used to preview a message. 
    What I don't like here, is the limitation on the widget width (max 512).
    If you can, please allow any size.
2) I would like to have the option to draw simple shapes, in order to make
    the screen more user friendly. Just simple shapes (Line, Rectangle, Circle)
3) If possible, allow the user to split the screen in equal sections and then
    assist the placement of widgets with the use of snap points.
4) A widget to preview/edit a Scheduler
5) I really like the new "Trends" widget, nice job.
    Here I would like to be able to give another name that will appear in
    the graph (i.e. other than the actual name of the trend)
    Additionally, I would like to have the option to navigate in the graph.
    (i.e. select the date for which to see data).
6) On the "Text label" widget, I would like to have the option to define 
    a custom size for it, so I can align it with other items on the screen.
7) On the "Spinner" widget, add the option to modify the shape of the 
    buttons. (i.e. No shape, Circle, Rounded corners, Square).
8) On custom widgets, allow the use of a Compact or NonCompact mode.


RE: New widgets - admin - 08.10.2025

1. Maximum size for all widgets in Compact mode has been increased to 1024.

2. Shape widget added in v20251008.

3. Nice feature but rather complicated to implement. We'll think about it.

4. Already on our to-do list but don't expect this soon.

5. Custom name is available in v20251008. Date selection might be added later.

6. Text label widget has a configurable size in the current version.

7. We'll think about it. For now you can use Additional classes (spinner-button-no-shape, spinner-button-shape-square or spinner-button-shape-rounder-corners) and Custom CSS:
Code:
.spinner-button-no-shape .spinner-btn {
  background: none;
  color: var(--visu-widget-active-color)
}

.spinner-button-shape-square .spinner-btn {
  border-radius: 0;
}

.spinner-button-shape-rounder-corners .spinner-btn {
  border-radius: calc(var(--spinner-base-size) * 0.25);
}

8. Available in v20251008.