I'd like to switch to another dashboard or to the home screen when clicking a mark in a vega visualization.
How am I supposed to define the href value?
Relative paths are not working for me..
"href": {"value": "/app/home"}
"href": {"value": "/app/r/s/gjVQU"}
When using the whole URL with same IP/hostname the href isn't working either..
"href": {"value": "https://192.168.xxx.xxx:5601/app/home"}
"href": {"value": "https://192.168.xxx.xxx:5601/app/r/s/gjVQU"}
There is just nothing happening when clicking the mark.
"href": {"value": "https://google.com"} is working, as well as any other external link.
Seems to be an issue within the domain.
Using "window.open("https://192.168.xxx.xxx:5601/app/home", "_self")"
or "window.open("/app/home", "_self")"
in the Developer Console (F12) works fine as well.
I wasn't able to find any solution concerning relativ paths.
What am I doing wrong?