Forum Discussion
Anonymous
7 years agoNot applicable
Two bar charts sharing one scroll bar
I need to show two bar charts with the same categorical axis. I have tried to get both charts in the same visualization, but I havent managed, so now I have two visualizations one next to the other a...
- 7 years ago
Hi Anonymous ,
We can make the both visuals sorted by the category in your scenario.
v-frfei-msft
Community Support
7 years agoHi Anonymous ,
We can create a bridge table to work on it.
Bridge = DISTINCT(UNION(VALUES(avail[index]),VALUES(duration[index])))
After that, we can use the index column in the bridge table as X-axis to work on it.
- Anonymous7 years agoNot applicable
Thanks v-frfei-msft. Both "availability" and "duration" belong to the same table in my example. Does it make sense to build this Bridge in that case?