Skip to main content
Solved

Lobby Chart in sort by X Axis

  • March 2, 2020
  • 4 replies
  • 356 views

Forum|alt.badge.img+7

Hi all,

 

This is my third problem i have posted and so far I’ve had 100% success, so i’m hoping this one will get solved too.

 

As you can see from the chart below, the data is being sorted by the y axis, as in the higher value or greater amount. I actually want the x axis to be sorted in weeks. In this example i’d want it to look like   06-2020, 07-2020, 08-2020 and last 09-2020.      

Any ideas?

 

 

Best answer by asanka

Just make sure the data source order by is set up so that it sorts by the column which you use for x-axis. Never been a problem.

4 replies

Forum|alt.badge.img+9
  • Hero (Customer)
  • 59 replies
  • March 2, 2020

Following this thread with great interest. I’m having the same issue.


Forum|alt.badge.img+8
  • 32 replies
  • March 18, 2020

We used a concept in the order by (Data Source Designer) like this:

to_char(date_entered,'MM'), to_char(date_entered,'DD'),to_char(date_entered,'YYYY')

For what you are showing something like:
to_char(date_entered,'MM'), to_char(date_entered,'DD')

 


Forum|alt.badge.img+7
  • Hero
  • 69 replies
  • Answer
  • March 18, 2020

Just make sure the data source order by is set up so that it sorts by the column which you use for x-axis. Never been a problem.


Forum|alt.badge.img+7
  • Author
  • Sidekick (Customer)
  • 17 replies
  • March 19, 2020

Thank you all for your help.

 

I Found out a much simpler way of doing it. I simply used the ORDER BY  ‘week’  in the Data Source Designer and its sorted the x axis perfectly.