I need to change my visual based on slicer selection of customer
First Visual->

Second Visual->

So I have put in my dax for first visual (where the manufacturer is "abc")->
IF(SELECTEDVALUE(Customers[Customer]) ="abc",[abc],BLANK())
So it will take the measure when the "abc" customer is selected else it will show BLANK.
Similarly I have done for other visual as well, and it is working fine.
DAX for second visual("qwe") ->
IF(SELECTEDVALUE(Customers[Customer]) ="qwe",[qwe],BLANK())
I have disabled the background of visuals as well, suppose if my customer is qwe then only second visual (donut) will come, first one (bar chart) will be blank and as there is no background so it will be totally transparent.
But the issue I am facing is, as the first visual (bar chart) is in bottom and second (donut chart) is up in z order, so if I want to slice my page (when "abc" customer is selected) based on the first visual bars then that won't be possible as we have donut chart above it (although it is blank).
Can anyone please tell me how to do that?