Search results

Members

dashboards

[]

By default, all dashboards that a user has permission to access will appear in the AI Assistant’s suggestion list. Use this member to specify which dashboards should be displayed in the suggestion list.

  • Default: []

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            dashboards: ['9a4c4002-d08e-41c5-b16d-4f219314d79d']
          }
      }    
});
dashboard.loadAIAssistant();

dataSources

[]

By default, all dataSources that a user has permission to access will appear in the AI Assistant’s suggestion list. Use this member to specify which dataSources should be displayed in the suggestion list.

  • Default: []

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            dataSources: ['9a4c4002-d08e-41c5-b16d-4f219314d79d']
          }
      }    
});
dashboard.loadAIAssistant();

headerTextColor

string

Specifies the color of the AI Assistant title text in the header.

  • Default: "" (empty)

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
               headerTextColor: '#fff'
          }
      }    
});
dashboard.loadAIAssistant();

hideBetaTag

boolean

Specifies whether to hide the Beta tag in the AI Assistant header.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            hideBetaTag: true,   
          }
      }    
});
dashboard.loadAIAssistant();

hideDashboardTag

boolean

Specifies whether to hide the Dashboard suggestion in the AI Assistant chat interface.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            hideDashboardTag: true,   
          }
      }    
});
dashboard.loadAIAssistant();

hideDatasourceTag

boolean

Specifies whether to hide the Data Source suggestion in the AI Assistant chat interface.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            hideDatasourceTag: true,   
          }
      }    
});
dashboard.loadAIAssistant();

Specifies whether to hide the logo in the AI Assistant header, Welcome message, and each chat conversation.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            hideLogo: true,   
          }
      }    
});
dashboard.loadAIAssistant();

hideWelcomeNote

boolean

Specifies whether to hide the welcome note in the AI Assistant interface.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            hideWelcomeNote: true,   
          }
      }    
});
dashboard.loadAIAssistant();

name

string

Specifies the title displayed in the AI Assistant header and Welcome section.

  • Default: "" (empty)

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
               name: 'Embed AI',   
          }
      }    
});
dashboard.loadAIAssistant();

queryDisplayLimit

number

Defines the number of query suggestions displayed in the AI Assistant. By default, six suggestions are shown, and you can customize this value to display fewer than six, but not more.

  • Default: 6

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          aiAssistant: {
            queryDisplayLimit: 4,   
          }
      }    
});
dashboard.loadAIAssistant();

HideIcons

Specifies whether to hide the Help Link in the AI Assistant header.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          hideIcons: {
            helpLink: false,
          }
      }    
});
dashboard.loadAIAssistant();

history

boolean

Specifies whether to hide the History in the AI Assistant header.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          hideIcons: {
            history: false,
          }
      }    
});
dashboard.loadAIAssistant();

newSession

boolean

Specifies whether to hide the New Session in the AI Assistant header.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          hideIcons: {
            newSession: false,
          }
      }    
});
dashboard.loadAIAssistant();

usageAnalytics

boolean

Specifies whether to hide the Usage Analytics in the AI Assistant header.

  • Default: false

Example

var dashboard = BoldBI.create({
     mode: BoldBI.Mode.AIAssistant,
      settings: {
          hideIcons: {
            usageAnalytics: false,
          }
      }    
});
dashboard.loadAIAssistant();