Forum Discussion

stribor45's avatar
stribor45
Post Prodigy
3 years ago
Solved

Line Chart - x axis

I have the table where my data column looks like this but my visual is showing data ordered by months (January comes before December) I would like the first data point to be the oldest one. So x-axis...
  • amitchandak's avatar
    3 years ago

    stribor45 , better use year of axis and expand and switch off concatenate label -off

     

    Or sort your month on this column

     

    month  = if(month([Date]) <7, month([Date])+6 , month([Date])-6)

     

    How to Create Sort Column and Solve Related Errors:
    https://www.youtube.com/watch?v=KK1zu4MBb-c

  • stribor45's avatar
    3 years ago

    Reformating the date to MMMM YYYYY and changing the axis type to "Categorical" resolved it for me.