See Announcements
Here are the ones I am most interested in:We didn't upgrade the chart viz plugins to F4 until now.
They were included in F4-beta with some rudimentary updates (I think they are installable) but never tested. So they are not included in the recent package.
If you are interested (in which one of the chart plugins?) to test and improve I can post the F4-Beta plugin zip here.
Another way would be to make a specific list with fabrik for the parameter that you want to use dynamically. It contains only one row with, say the location. You can then use the fabric plugin to show the edit form before your plotalot plots which get the location form the list. The user can choose the location, save the row, fabrik reloads the same pate and the plots get updated to the selected location.
It contains only one row with, say the location
select t3.gender, count(t3.gender)
from beneficiaries as t3
where date(t3.created_on) between (select trfrom from time_range_for_plots where id = 1) and (select trto from time_range_for_plots where id = 1)
group by t3.gender
select t1.gender, count(t1.gender)
from crm_contact as t1
join time_range as t2
on t1.created_on>=t2.trfrom AND t1.created_on<=t2.trto
where if("%%P1%%"="", 1=1, t1.location = "%%P1%%") AND t1.contact_category like "%Volunteer%"
group by t1.gender