Hello everyone,
I'm trying to implement a time range for a table, I have the following code:
//var range = TimeRange.createMonthRange(2023,9,2023,12); //Another option
var range = TimeRange.create(TimeRangeGranularity.Month, new Date(2023,8),new Date(2023,11);
Table_3.getDataSource().setDimensionFilter("Tiempo", range);
It seems ok for what I've researched, but it simply doesn't work. What am I doing wrong?
Thanks
Andrés