Navigating inside a Dashboard with html-anchors

Hi there, i was wondering if there is an easy way to navigate to the next item in a Dashboard - i.e. the height of a table fills the whole screen and the user wants to jump directly to the next item on the same Dashboard. Navigation in general is documentend quite well, only missing the part where i can define anchors and get to them with i.e. a script.

Thanks!

1 Like

Hello @marc.proske,

Can you explain what is the next item? It is another visualization inside the dashboard?

To make it easy, this element could be a label. So jump from label a on top of the dashboard to label b in the middle and then to label c at the bottom. Don´t get me wrong, its not the case that we want to jump to fixed positions, all the label positions can differ.

Hi @marc.prosk ,

You can do this with HTML labels. At the top of the screen, add a HTML label that the user can click on to navigate.

Add the following HTML to it:

<a href="#C4">Jump to Injuries</a>

image

Where you want the jump target to appear, add another HTML label. If you’re using frames like I am, you might considering replacing the frame label text with your new HTML label so that your user is jumping to the title.

Add this script to the label :
<a name="C4">Injuries</a>

That’s it, you can now click on the navigation section and be jumped to the section you want.

1 Like