Visivo capability

Let anyone answer their own question, right on the page.

Dropdowns, sliders, radios, checkboxes, and chips put self-serve exploration on the dashboard itself, so anyone can re-slice the data by point-and-click.

inputs → live result
Region
Min revenue
Segment
re-queriedpoint-and-click
How it works

What you get with Explorer

  1. Dynamic inputs

    Controls for every question

    Single- and multi-select inputs render as dropdowns, sliders, radios, checkboxes, and chips.

  2. Query-backed options

    Choices from your data

    Dropdowns can populate their options straight from a query, so they stay current.

  3. Self-serve

    Point-and-click, no request

    Viewers re-slice live data on the dashboard by point-and-click, without filing a ticket.

In the project

Inputs drive the insight, live.

Declare inputs once; an insight filters itself against the selection.

project.visivo.yml
inputs:
- name: region_filter
type: multi_select
options: ?{ select distinct region from ${ref(orders)} }
- name: min_revenue
type: single_select
options: [0, 10000, 50000]
insights:
- name: filtered-orders
interactions:
- filter: ?{ ${ref(orders).region} in ${ref(region_filter)} }
Install command copied