Welcome, Guest |
You have to register before you can post on our site.
|
Latest Threads |
What is the maximum numbe...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-28-2022, 07:59 AM
» Replies: 0
» Views: 8,016
|
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,183
|
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,225
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:47 PM
» Replies: 0
» Views: 3,177
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:46 PM
» Replies: 0
» Views: 3,233
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:45 PM
» Replies: 0
» Views: 2,252
|
How to load business stor...
Forum: BDB Designer Q & A
Last Post: sariga.vr@bdb.ai
12-26-2022, 04:44 PM
» Replies: 0
» Views: 2,229
|
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 1,203
|
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 1,083
|
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 1,085
|
|
|
Script for dashboard guided tour |
Posted by: shreekantgosavi - 12-23-2022, 12:11 PM - Forum: BDB Designer Q & A
- No Replies
|
|
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);
|
|
|
Script to export dashboard as pdf |
Posted by: shreekantgosavi - 12-23-2022, 11:52 AM - Forum: BDB Designer Q & A
- No Replies
|
|
Use it on any label/image
sdk.getWidget('label_AG').m_scrnshotorientation = "P";
sdk.getWidget( 'label_AG' ).m_loadermessage = "<span style ='color:#000;font-size:32px; font-weight: normal; font-family: BizvizFont''>Export in progress </span><br> <span style = 'color:#000;font-size:16px; font-weight: normal; font-family: BizvizFont; align=center'>Please wait while the PDF is prepared for export </span>";
sdk.getWidget( 'label_AG').m_scrnshotfilename = "Sales Overview";
sdk.getWidget( 'label_AG').setCustomExportPdf([
['box83','datagrid87','map64','image2','image8','image9','image10','image11','image33','image68','image89','image87','image74','label3','label12','label13','label14','label15','label16','label17','label18','label19','label22','label23','label28']
]);
|
|
|
Kafka terminologies |
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:50 AM - Forum: BDB Data Pipeline Q & A
- No Replies
|
|
- Broker:A kafka server (Broker/Agent) for the messages/data
- Cluster: A group of computers/brokers connected together
- Topic: A name for the kafka stream
- Partition: A part of a topic
- Offset: Unique ID for a message within a partition,keeps a track of number of data elements retrived by each component.
|
|
|
|