30日間の無料評価版をお試しいただけます。

Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

//Load the dashboard with showToolbar not defined
yellowfin.loadDashboard({
         reportId dashboardUUID:'1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
         element: document.querySelector('div#dashboardDiv');
});
//Load the dashboard with showToolbar set to true
yellowfin.loadDashboard({
           reportId dashboardUUID: '1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
         element: document.querySelector('div#dashboardDiv'),
         showToolbar: true
});

...

//Load the dashboard with showToolbar set to false
yellowfin.loadDashboard({
         reportId dashboardUUID: '1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
         element: document.querySelector('div#dashboardDiv'),
         showToolbar: false
});

...

//Load the dashboard with showShare option set to false
yellowfin.loadDashboard({
           reportId dashboardUUID: '1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
         element: document.querySelector('div#dashboardDiv'),
         showShare: false
});

...

//Load the dashboard with showFilter option set to false
yellowfin.loadDashboard({
           reportId dashboardUUID: '1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
         element: document.querySelector('div#dashboardDiv'),
         showFilter: false
});

...

//Load the dashboard with scaleCanvasTabs option set to false
yellowfin.loadDashboard({
          reportId    dashboardUUID: '1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
          element: document.querySelector('div#dashboardDiv'),
          scaleCanvasTabs: false
});

...

//Load the dashboard with showGlobalContentContainer option set to false
yellowfin.loadDashboard({
           reportId dashboardUUID: '1e68d9cc-fa5a-44e2-816d-782aa40ceeae',
         element: document.querySelector('div#dashboardDiv'),
         showGlobalContentContainer: false
});

...