What is the best way to obtain the size of the filtered firstchartGroup
when filtering the 2nd chart in my dashboard that contains 2 charts?
Here's what I attempted:
chart2.on("filtered",function(chart)
{
console.log(firstchartDim.top(Infinity).length);//including filters
console.log(firstchartGroup.size());//independent of filters
});
Do you have any suggestions or alternative solutions for this issue?