Forum Discussion
inglexjc
Post Patron
1 year agobar graph format
How do I get Bar Graph to have more space and line up with it's data source? What I have: Spacing and line up I'm wanting:
inglexjc
Post Patron
1 year agoWhen I do that:
I get this:
Deku
Super User
1 year agocreate a table like this
yAxis =
DATATABLE(
"measure", STRING,
{{"a"}, {"b"}, {"c"}}
)
and a measure
xAxis =
SWITCH(
SELECTEDVALUE( 'yAxis'[measure] )
,"a", [a],
"b", [b],
"c", [c]
)and add to a stacked bar chart
- inglexjc1 year ago
Post Patron
Do I have to do a, b,c I want it to read Offline 3-4 weeks ect. Also what am I doning wrong if I can have it list out the weeks?
Looks like table worked:
The xAxis measure is not working.