Created
March 28, 2016 20:05
-
-
Save cmtoomey/c9b21f53d6145dc50ea0 to your computer and use it in GitHub Desktop.
Tableau Animation
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
i = 1 | |
function interval() { | |
var i = 0; | |
setInterval(function() { | |
if (i < 70) { | |
console.log("The count is: " + i); | |
animate1(i); | |
i++; | |
} | |
}, 1000); | |
}; | |
function animate1(a) { | |
workbooka.changeParameterValueAsync(“ANIMATE”, [a]); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment