Why a separate Rift?
A single dataset might power both a table and a graph on the same board. The table might need to show individual rows, while the graph needs data grouped by month. Chart Rift lets you configure the graph’s data shaping independently without affecting the table.What you can configure
Chart Rift supports the same operations as the main Rift:- Group by — group rows by columns to create the axis categories or time series.
- Aggregate — apply sum, average, count, and other functions to numeric columns.
- Filter — narrow the data for the graph.
- Sort — control the order of data points.
- Hide columns — exclude columns not needed by the graph.
- Row limit — cap the number of data points.
Example
Suppose your dataset returns daily sales by product:| date | product | amount |
|---|---|---|
| 2025-01-01 | Widget A | 100 |
| 2025-01-01 | Widget B | 150 |
| 2025-01-02 | Widget A | 120 |
| … | … | … |
date and sum amount to feed a line chart showing total daily sales.
Related
- Rift transformations — the base Rift layer.
- Graph charts — configuring graph visualizations.
- Charts overview