Documentation Index
Fetch the complete documentation index at: https://docs.evidence.studio/llms.txt
Use this file to discover all available pages before exploring further.
{% repeat
id="category_repeat"
data="demo.daily_orders"
column="category"
%}
{% line_chart
data="demo.daily_orders"
x="date"
date_grain="month"
y="sum(total_sales)"
filters=["category_repeat"]
/%}
{% /repeat %}
Examples
Basic Usage
{% repeat
id="category_repeat"
data="demo.daily_orders"
column="category"
%}
{% line_chart
data="demo.daily_orders"
x="date"
date_grain="month"
y="sum(total_sales)"
filters=["category_repeat"]
/%}
{% /repeat %}
With WHERE Clause
{% repeat
id="top_categories"
data="demo.daily_orders"
column="category"
where="total_sales > 1000"
%}
### {{top_categories}}
{% line_chart
data="demo.daily_orders"
x="date"
y="sum(total_sales)"
filters=["top_categories"]
/%}
{% /repeat %}
Attributes
The id of this repeat component to be used in the filters prop of its children
The name of the table to query
The name of the column within the data table to get distinct values
SQL WHERE clause to filter which values to repeat over
Array of filter IDs to apply when querying for distinct values