I'm trying to create simple superset
dashboard with a single chart (Big Number
) that will filter data based on URL parameter passed to the dashboard. I've tried to fallow this Apache Superset Dashboard Filter with URL parameter ). I've used pattern &preselect_filters={"CHART-ID":{"tableColumnName1":["value1"]}}
and then tried to define new filter in a chart like tableColumn = {{ filter_values('tableColumnName1')[0] }}
, but this generates error. From my observation it resolves this expression without looking for query param.
How should I use it? Is there a documentation somewhere?
My superset version is 0.37.0
test2
and the only chart has id =26
. In this chart I've tried to add filtermarker = 'KR2'
and later alter it with query param I've mentioned and nothing happened. I've also removed this filter form chart and tried again - nothing :( – Stound