Change in x axis display

57 Views Asked by At

I have a table with an index representing the trading days for each year, as if they were business days. In my chart, I need the x-axis to display the corresponding months of these days rather than the day numbers. For example, January (index 0 to 22), ... etc. I have a calendar table related to my database, but it didn't work for me. Can someone help?

columns in order (product, quotes, index, date)

enter image description here enter image description here

I tried everthing i know. And i need the x axis displayng the months without agregate the quotes in a sum.

enter image description here

i want this, with the x axis below (month names):

enter image description here

1

There are 1 best solutions below

0
Sam Nseir On

A quick 'hack' would be to hide the X-axis values, and overlay text boxes for the Months on top.

enter image description here

If you want a tooltip to show day month (as shown above in the image) then you can create a new date column for all being in the same year. For example:

Create a new Calculated Column on your table with:

Chart Date = DATE( 2000, MONTH([Date]), DAY([Date]) )

Then ensure this column is set to Date type Date with Format (d mmmm).

enter image description here

Use this new column for your X-axis. Then same as mentioned above, hide the values and overlay the month text boxes.