VisualizationOverrides

VisualizationOverrides

Table of Contents

Visualization overrides to customize chart and table rendering within embedded ThoughtSpot components.

const embed = new AppEmbed('#tsEmbed', {
  visualOverrides: {
    chart: {
      legend: { show: true, position: 'bottom' },
      columns: [{ name: 'Revenue', color: '#1f77b4' }],
    },
    table: {
      display: { tableTheme: 'ZEBRA', tableContentDensity: 'COMPACT' },
    },
  },
});

Properties🔗

chart🔗

chart: ChartOverrides

Optional

Chart visualization overrides

table🔗

table: TableOverrides

Optional

Table visualization overrides

© 2026 ThoughtSpot Inc. All Rights Reserved.