Products | Versions |
---|---|
Spotfire Server | All |
In some some situations it is required to have a Spotfire dashboard open on a monitor without any user interacting with it just to display desired data. The user might be logged off if there is some internal timeout or if the inactivityTimeout is reached (the length of time that an analysis session can be alive when no user activity has been detected, excluding pings).
<!DOCTYPE html> <html> <head> <meta http-equiv="X-UA-Compatible" content="IE=Edge" /> <script> <!-- Will make the browser reload the page once every 20 minutes --> setInterval(function () { location.reload(); }, 1000 * 60 * 20 * 1); </script> </head> <body> <iframe src="link to your dashboard" width="1600" height="1000"></iframe> </body> </html>