Skip to main content
cancel
Showing results for 
Search instead for 
Did you mean: 
Anonymous
Not applicable

hiding in Bar Graph

i want to hide only BLACK shaded bar,how it is possible?.

8 Replies
kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

Hi,

You can do it by eliminating the data that corresponds to that bar which is c_id =4.

Try this expression.

Count({<c_id -= {"4"}>}Field)

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

hi

given exp is not working.

kaushiknsolanki
Partner Ambassador/MVP
Partner Ambassador/MVP

What expression do you have.

if possible share your application.

Regards,

Kaushik Solanki

Please remember to hit the 'Like' button and for helpful answers and resolutions, click on the 'Accept As Solution' button. Cheers!
Anonymous
Not applicable
Author

thanks, its working but i didn't get one thing while i am using 2 exp in graph that time c_id=4 is visible for 2nd exp.

Anonymous
Not applicable
Author

Siva_Sankar
Master II
Master II

Because second expression it counts all C_ids but in the first expression C_id is excluded.

Count({<c_id-={"4"}>c_id}) meaning count all c_ids excluding c_id=4

Count(c_id) count of all c_ids without any exception.

-Siva

Anonymous
Not applicable
Author

ya but one thing you noticed there? top on the bar 5 is there and total count is 6 that means 2nd exp doesn't count that 4,it shows only in bar..

Anonymous
Not applicable
Author

It depends on what expression you have used to display that 5 count. If you have excluded c_id=4 in that expression then it won't appear in the count.