-
-
Save bsullins/3a654abbbdaff42f51db to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<!DOCTYPE html> | |
<html> | |
<title>I'm an HTML file!</title> | |
<!-- Replace the reference to the JS API on Tableau Public to your server --> | |
<script type="text/javascript" src="http://public.tableausoftware.com/javascripts/api/tableau_v8.js"></script> | |
<script type="text/javascript" src="http://ajax.googleapis.com/ajax/libs/jquery/1.9.1/jquery.min.js"></script> | |
<body> | |
<div id="content"> </div> | |
<script> | |
var viz; | |
function refreshThatSucker(){ | |
viz.refreshDataAsync(); | |
//or do something more obvious and evil | |
//viz.showShareDialog(); | |
} | |
function initializeViz() { | |
var placeholderDiv = document.getElementById("content"); | |
// Replace this URL with your viz | |
var url = "http://public.tableausoftware.com/views/Iceland_0/IcelandDashboard"; | |
var options = { | |
width: content.offsetWidth, | |
height: content.offsetHeight, | |
hideTabs: true, | |
hideToolbar: true, | |
onFirstInteractive: function () { | |
// Refresh the viz every 5000 milliseconds | |
window.setInterval("refreshThatSucker()",5000); | |
} | |
}; | |
try{ | |
viz = new tableauSoftware.Viz(placeholderDiv, url, options); | |
} | |
catch (e){ | |
alert(e); | |
} | |
}; | |
</script> | |
<script type="text/javascript"> | |
// Initialize the app on document ready. | |
$(initializeViz); | |
</script> | |
</body> | |
</html> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment