Welcome, Guest
You have to register before you can post on our site.

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 81,229
» Latest member: MarianKunk
» Forum threads: 389
» Forum posts: 395

Full Statistics

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,011
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 1,182
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 1,223
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,172
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,232
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,250
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,202
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,083

 
  what is Language Mapping in dashboard ?
Posted by: Asma M - 12-23-2022, 10:59 AM - Forum: BDB Designer Q & A - No Replies

The users can use the Language Settings functionality for the below-given dashboard charting components:

Title and Subtitle description
X-axis and Y-axis description (second Axis description)
Inbuilt Legends, Timeline Legends.
Legend component and static legends
Title of filters
Header name of Grids
Pie chart without a category: Legends
Tooltips and custom tooltip
Export, Filter Saver, URL button, Bullet, Gauge, Semi gauge titles

Print this item

  How to use auto update gv and notify gv using scripts?
Posted by: sariga.vr@bdb.ai - 12-23-2022, 10:59 AM - Forum: BDB - Designer - No Replies

This can be done using


sdk.updateGlobalVariable( 'ComponentID',
{'Key': 'Values'},Notify_true_OR_false );

Here {'Key': 'Values'}àThis part performs the function of update GV
          Notify_true_OR_false )àThis performs the function of notify GV

Here if we give true then it executes the script written in that particular component.


Note: We cannot give true while we are writing this in connection .

Print this item

  Repeateradditional field in repeater enabled component
Posted by: Athi - 12-23-2022, 10:59 AM - Forum: BDB Designer Q & A - No Replies

A column value can be shown as title /subtitle for a component which has repeater enabled.


var chart = sdk.getWidget('timeline28');
chart.m_sliderheightratio=2.87;
chart.m_isrepeater = "true";
chart.m_repeaterfield = "repeaterfieldname";
chart.m_repeateradditionalfield ="repeateradditionalfieldname";
chart.m_repeatercolumns = "1";
chart.m_repeaterheight = "375";
chart.m_repeatervmargin = "5";
chart.m_repeaterhmargin = "5";
chart.draw();


Above script can be used in connection script. Mention [repeateradditionalfield] in title /subtitle wherever user want it to be shown

Print this item

  Default configuration in settings tab
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 10:59 AM - Forum: BDB Data Pipeline Q & A - No Replies

This is for  setting the Default component configuration to Low, Medium and, High configuration Pipelines for Spark and Non Spark(docker) components.

Print this item

  What does Load at Start do in a dashboard?
Posted by: gnanashri - 12-23-2022, 10:59 AM - Forum: BDB Designer Q & A - No Replies

When the dashboard is previewed, the specific connection will load with its component if load at start is set to yes. The component doesn't load its connections if it is no. 

Print this item

  How to adjust the background opacity and border of the default selected filter using
Posted by: neeraja.pattathil@bdb.ai - 12-23-2022, 10:59 AM - Forum: BDB Designer Q & A - No Replies

How to adjust the background opacity and border of the default selected filter using a script?


Use: to adjust the background opacity,border of the default selected filter.
Script area: dashboard
Script:
sdk.setAfterRenderCallBack( 'filter23',function() {
var filter_var = "#selectBoxId"+sdk.getWidget('filter23').m_objectid;
$(filter_var).css({
 "border": "0px solid transparent",
   "background-color": "rgba(0,0,0,0.05)",
"border-radius":"4px"
});
});

Print this item

  To enable TTL
Posted by: manirathinavelu.m - 12-23-2022, 10:58 AM - Forum: BDB Business Story Q & A - No Replies

How does the data store TTL works and how to enable it?

Print this item

  Event Mapping in pipeline
Posted by: mohd.gulam - 12-23-2022, 10:57 AM - Forum: BDB Data Pipeline Q & A - No Replies

In this Event mapping, we can use shared events or mapped events,While creating a topic, we have to turn on the option for Mapped Event .

After that we have to mention Event Name of the other event in the other pipeline. So that, the same data will be available here.

Print this item

  What is an open document link and how to access it?
Posted by: gnanashri - 12-23-2022, 10:57 AM - Forum: BDB Designer Q & A - No Replies

One can create an open link from a published dashboard. By selecting the properties of the published dashboard, you may generate this open document link, which you can then use to share your dashboard with others so they can view it in view-only mode. 

Print this item

  BDB Search and Self service search
Posted by: manirathinavelu.m - 12-23-2022, 10:57 AM - Forum: BDB Business Story Q & A - No Replies

I could see that BDB AI search is available in both places, one at the platform level and another at each reporting level. What is the difference between these and how to use them efficiently?

Print this item