Forum Discussion
inglexjc
1 year agoPost Patron
bar 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
1 year agoPost Patron
When I do that:
I get this:
Deku
1 year agoSuper User
create 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 agoPost 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.