Script for dashboard guided tour - Printable Version +- Forums (https://bdn.bdb.ai) +-- Forum: BDB Knowledge Base (https://bdn.bdb.ai/forumdisplay.php?fid=13) +--- Forum: BDB Dashboards Designer (https://bdn.bdb.ai/forumdisplay.php?fid=43) +---- Forum: BDB Designer Q & A (https://bdn.bdb.ai/forumdisplay.php?fid=16) +---- Thread: Script for dashboard guided tour (/showthread.php?tid=611) |
Script for dashboard guided tour - shreekantgosavi - 12-23-2022 var config = { name: 'dashboardTour', steps: [ {"element": "#" + sdk.getDivIdFromComponetId('datagrid9'), "title": "Yearly Sales grid ", "content": "This grid shows Sales trend by Years < br> Shows Sales in M$ < br> Refresh the grid by selecting different firm from filter", "placement" : "auto", "duration": "1500"}, {"element": "#" + sdk.getDivIdFromComponetId('sgauge4'), "title": "Sales Target vs Actual ", "content": "Gauge has target and achieved sales in selected year", "placement" : "bottom", "duration": "2000" }, {"element": "#" + sdk.getDivIdFromComponetId('grpbar10'), "title": "Sales Category Chart ", "content": "This chart plots cumulative sum of sales in each segment" } ], onStart: function(){}, onEnd: function(){} }; sdk.startDashboardTour(config); |