Skip to main content
A visualization is a single chart, table, or KPI card built from a connected dataset. You can add visualizations to any dashboard, or explore them standalone in the Visualizations section of the sidebar.

Chart types

Vizdom supports the following chart types:
TypeBest used for
BarComparing values across categories
LineShowing trends over time
AreaEmphasizing cumulative totals over time
ScatterExploring correlations between two numeric fields
Pie / DonutShowing part-to-whole relationships
TableDisplaying raw or summarized data in rows and columns
Number / KPI cardHighlighting a single key metric
HeatmapVisualizing density or intensity across two dimensions
Geo MapPlotting geographic data on an interactive map

Creating a visualization

1

Open the visualization builder

In the sidebar, click Visualizations, then click New Visualization.
2

Pick a dataset

Select a connected data source and choose a table or write a custom SQL query. Click Run to preview the results.
3

Choose a chart type

Select a chart type from the panel on the right. Vizdom highlights recommended types based on the shape of your data.
4

Configure axes and dimensions

Map your dataset columns to the chart’s fields — for example, assign a date column to the X axis and a revenue column to the Y axis.
5

Save your visualization

Click Save, give your visualization a name, and optionally add it to a dashboard right away.

Formatting options

In the Format panel (right side of the builder), you can customize:
  • Colors — choose a single color or apply a color palette to series.
  • Labels — toggle data labels on or off, and choose their position (inside, outside, top, bottom).
  • Legend — show or hide the legend, and control its position (top, bottom, left, right).
  • Tooltips — configure what appears when a viewer hovers over a data point, including custom field aliases.
  • Axes — set axis titles, min/max values, and number formatting (currency, percentage, decimal places).

Configuration examples

In the Data panel, assign:
  • X axis — a categorical field (e.g., product_category)
  • Y axis — a numeric field (e.g., total_revenue)
  • Group by (optional) — a second categorical field to produce grouped or stacked bars
In the Format panel, use Bar style to switch between grouped and stacked layouts. Enable Sort bars to order them by value descending.
SELECT product_category, SUM(revenue) AS total_revenue
FROM orders
GROUP BY product_category
ORDER BY total_revenue DESC

Conditional formatting

Use conditional formatting to highlight values that cross a threshold, making outliers immediately visible. To add a rule:
  1. Open the Format panel and scroll to Conditional Formatting.
  2. Click Add Rule.
  3. Choose the target field, a condition (greater than, less than, equal to, between), and a threshold value.
  4. Set the highlight color for cells or data points that match the condition.
You can stack multiple rules on a single field. Rules are evaluated top-to-bottom and the first match wins.

Drill-down and linked dashboards

Any visualization can link to another dashboard, letting viewers click a data point to open a related view. To set up a drill-down:
  1. Open the visualization in edit mode.
  2. In the Interactions panel, select Drill down to dashboard.
  3. Choose the target dashboard and optionally map a field from the current chart to a filter on the target dashboard.
When a viewer clicks a bar, point, or row, Vizdom opens the target dashboard with that filter pre-applied.

Dashboards

Arrange your visualizations into shareable dashboards.

AI Insights

Let AI recommend chart types and surface anomalies automatically.