Build personalized dashboards with drag-and-drop widgets
Create custom dashboards tailored to your team's KPIs and workflows
Bar, Line, Area, Donut, Pie charts
Single value indicators with trends
Sortable data grids with filters
Geographic and time-based patterns
{
"dataSource": "crm.deals",
"aggregation": "sum",
"field": "value",
"groupBy": "stage"
}{
"filters": {
"dateRange": "last_30_days",
"status": ["active", "pending"],
"owner": "current_user"
}
}// Dashboard configuration JSON
{
"name": "Sales Performance",
"layout": "2-column",
"widgets": [
{
"type": "metric",
"title": "Monthly Revenue",
"dataSource": "crm.deals",
"query": {
"aggregation": "sum",
"field": "value",
"filter": { "stage": "closed_won", "dateRange": "this_month" }
}
},
{
"type": "bar_chart",
"title": "Deals by Stage",
"dataSource": "crm.deals",
"query": {
"aggregation": "count",
"groupBy": "stage"
}
},
{
"type": "table",
"title": "Top Deals",
"dataSource": "crm.deals",
"columns": ["title", "value", "expected_close_date"],
"limit": 10,
"orderBy": "value DESC"
}
]
}Private Dashboard
Visible only to you
Team Dashboard
Share with specific teams or departments
Company-Wide
Available to all users in your organization