InterviewSolution
Saved Bookmarks
| 1. |
What is the difference between a treemap and a heat map? |
|
Answer» The following is an EXAMPLE of the dashboard that refreshes every 5 seconds. You just NEED your API src and your URL SERVER to MATCH. <!DOCTYPE html > < html lang="en "> < head > < title >Tableau Refresh Example </title > < script type="TEXT / javascript" src="http:/*servername*/ *Java script libraray Path*/tableau v8.js"></script > </head > < div id="tableau_Div"></div > < script type='text / javascript' > var exampleDiv= document.getElementById("tableau_Div)"; var url=" http:/*servername(/*view path *"; var options={ hideTabs: True, width:"100%", height:"1000px " }; var viz= new tableauSoftware. Viz(exampleDiv, url, options); setInterval (function)({ viz.refreshDataAsync()},5000); </script > </body > < /html > |
|