", "answerCount": 0, "upvoteCount": 0, "datePublished": "2018-06-22T05:35:07.000Z", "author": { "@type": "Person", "name": "Tableau Community Forums Member (Inactive)", "url": "https://trailblazers.salesforce.com/profileView?u=005KX000003dXo4YAE", "affiliation": { "@type": "Organization", "name": "Salesforce" } }, "suggestedAnswer": [] } } Skip to main content

以下のようなhtmlのように自動リロードを実装しているんですが、更新時にくるくると回る更新マークと白く画面がマスクされるのを見せないようにするにはどうすればいいでしょうか。

何かヒントやアドバイスでもいただけるととてもうれしいです。

よろしくお願いします。

 

<!DOCTYPE html>

 

<html lang="en">

 

  <head>

 

  <title>Tableau JavaScript API</title>

 

  <script type="text/javascript" src="    /javascripts/api/tableau_v8.js"></script>

 

  </head>

 

  <body>

 

  <div id="tableauViz"></div>

 

<script type='text/javascript'>

 

var placeholderDiv = document.getElementById("tableauViz");

 

  var url = "       ";

 

  var options = {

 

    hideTabs: true,

 

    width: "100%",

 

    height: "1000px"

 

  };

 

  var viz = new tableauSoftware.Viz(placeholderDiv,url, options);

 

    setInterval(function () {viz.refreshDataAsync() }, 5000);

 

</script>

 

</body>

 

</html>

0/9000