Skip to main content

Example

{% 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 %}

Attributes

id
String
required
The id of this repeat component to be used in the filters prop of its children
data
String
required
The name of the table to query
column
String
required
The name of the column within the data table to get distinct values
filters
Array
default:"[]"
Array of filter IDs to apply when querying for distinct values
I