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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 57,098
» Latest member: RogelioTor
» 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: 800
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 572
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 540
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: 702
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: 711
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: 664
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: 645
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 555
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 553
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 565

 
  script to remove tooltip for groupbar/bar chsrt
Posted by: shreekantgosavi - 12-23-2022, 11:46 AM - Forum: BDB Designer Q & A - No Replies

var comp = sdk.getWidget( 'bar52' );
comp.m_tooltipproperties.showcummulativesum="false";
comp.m_tooltipproperties.showcummulativepercent="false";

Print this item

  Script to get filter index
Posted by: shreekantgosavi - 12-23-2022, 11:45 AM - Forum: BDB Designer Q & A - No Replies

var a = sdk.getWidget( 'filter53' );
var b = a.m_selectedindexarray;
alert(b);

Print this item

  Script to get user custom property
Posted by: shreekantgosavi - 12-23-2022, 11:43 AM - Forum: BDB Designer Q & A - No Replies

var u1=sdk.getUserCustomProperty("ManagerID");

Print this item

  Script to change chart height
Posted by: shreekantgosavi - 12-23-2022, 11:41 AM - Forum: BDB Designer Q & A - No Replies

var a = sdk.getWidget( 'datagrid1' );
a.m_height=300;
a.draw();
 

Print this item

  Script to make chart title bold
Posted by: shreekantgosavi - 12-23-2022, 11:40 AM - Forum: BDB Designer Q & A - No Replies

a =sdk.getWidget( 'datagrid1' );
a.m_enablehtmlformate.title = true;
a.m_title.m_fontweight='bold';

Print this item

  What is NLP search?
Posted by: sariga.vr@bdb.ai - 12-23-2022, 11:39 AM - Forum: BDB Business Story Q & A - No Replies

The Data Search page highlights the important conversational analytics choices and displays the graph or story after conducting a keyword search.

Print this item

  How to hide/show column in datagrid with script?
Posted by: shreekantgosavi - 12-23-2022, 11:37 AM - Forum: BDB Designer Q & A - No Replies

sdk.getWidget( 'datagrid50' ).m_dataset.Fields[1].visible='false';
sdk.getWidget( 'datagrid50' ).m_dataset.Fields[2].visible='true';

Print this item

  Why does Range not get listed at times?
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:35 AM - Forum: BDB Business Story Q & A - No Replies

Range will not be listed for the space where MongoDB server is configured in the Admin Settings. The Range functionality is available only if the Elastic Search configuration is done from the Admin Settings.

Print this item

  What does Data Store Merge do?
Posted by: aishwarya.rajan@bdb.ai - 12-23-2022, 11:33 AM - Forum: BDB Business Story Q & A - No Replies

The user can add/merge multiple Data Stores and drag the required measure to add the corresponding fields in the view

Print this item

  How to change the x or y axis description using script
Posted by: sariga.vr@bdb.ai - 12-23-2022, 11:33 AM - Forum: BDB Designer Q & A - No Replies

sdk.getWidget( 'mix33' ).m_xAxis.m_description='Quarter';

We have to provide component id in the place where i marked in red colour.
we have to provide the description in the place where i marked in green colour.

Print this item