Want to hide Some rows in my bar graph visualization

I have a bar graph with cumulative count, What I want is I want hide data before 8th feb when I put filter my data manipulate that means my total count will effect at last cause it's cumulative count.

Please suggest a possible solution so that my total count will not effect but hide bars before 8th feb.

Thanks

Hi @varnika
You would have to do that in SQL manually. That would probably require a couple of CTEs, so you first get all the dates with cumulative count, and then only show from a specific period.