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

Username/Email:
  

Password
  





Search Forums

(Advanced Search)

Forum Statistics
» Members: 56,829
» Latest member: ElbaKimbel
» 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: 798
Inbuilt Capability of VC...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:23 AM
» Replies: 0
» Views: 570
Can dataset/cube refresh...
Forum: BDB - Platform
Last Post: shivani.jaipuria
12-27-2022, 05:08 AM
» Replies: 0
» Views: 538
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: 698
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: 707
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: 662
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: 643
Data Preparation operati...
Forum: BDB-Data Prep & ETL
Last Post: shivani.jaipuria
12-26-2022, 10:09 AM
» Replies: 0
» Views: 554
Plugability Feature of B...
Forum: BDB Platform Q & A
Last Post: shivani.jaipuria
12-26-2022, 08:32 AM
» Replies: 0
» Views: 550
How to use environment va...
Forum: BDB Platform Q & A
Last Post: archana
12-26-2022, 05:57 AM
» Replies: 0
» Views: 564

 
  Script for custom tooltip width
Posted by: shreekantgosavi - 12-23-2022, 12:13 PM - Forum: BDB Designer Q & A - No Replies

sdk.getWidget( 'Column1' ).m_customtooltipwidth = 350;

Print this item

  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);

Print this item

  Script for best fit line dashboard
Posted by: shreekantgosavi - 12-23-2022, 12:10 PM - Forum: BDB Designer Q & A - No Replies

sdk.setBestFitLine('Plot1',[{
'FieldName': 'X1',
'EnableLine': true,
'LineWidth': "2",
'LineColor': "#000000",
'LineType': 'straight' // (dot,dash,dash1)
}]);

Print this item

  Script to use tooltip in mobile dashboard
Posted by: shreekantgosavi - 12-23-2022, 12:09 PM - Forum: BDB Designer Q & A - No Replies

sdk.getWidget( 'ComponentID' ).m_mobiletooltipstyle = "default";

Print this item

  Refresh cache for data service
Posted by: shreekantgosavi - 12-23-2022, 12:07 PM - Forum: BDB Designer Q & A - No Replies

sdk.refreshCache();

Print this item

  Export chart data as csv
Posted by: shreekantgosavi - 12-23-2022, 11:53 AM - Forum: BDB Designer Q & A - No Replies

sdk.getWidget( 'bar1' ).m_excelexportext = 'csv';

Print this item

  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']
]);

Print this item

  script for updating filter chip
Posted by: shreekantgosavi - 12-23-2022, 11:50 AM - Forum: BDB Designer Q & A - No Replies

Script for updating filter chips

sdk.updateFilterChips('filterchips1');


Apply above script in component which is reloading connection after applying filters.

Print this item

  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.

Print this item

  What is Rule Splitter?
Posted by: sariga.vr@bdb.ai - 12-23-2022, 11:50 AM - Forum: BDB Data Pipeline Q & A - No Replies

Rule Splitter is used split the input file based on some particular condition that we provide.

Print this item