Format Rules for Charts Axis (e.g. highlight today)

Hi all,

i have a chart with dates on the x axis:

MartinL__0-1673630232945.png

Is it possible to highlight today (so the actual date) in the chart on the axis (e.g. make it bold)?

I tried with format rules but it didnt work (works only in other views). So i guess currently this is not possible?

thanks in advance and kind regards

Solved Solved
0 2 183
  • UX
1 ACCEPTED SOLUTION

You can "highlight" today's record by adding in an emoji. The chart shows the Label column of the table, so you can add a new VC with a formula such as below to include an emoji into only today's record, and set the new VC as the Label column.

IFS( [date]=TODAY() , "โš ๏ธ" ) & [date]

 

 

 

View solution in original post

2 REPLIES 2

You can "highlight" today's record by adding in an emoji. The chart shows the Label column of the table, so you can add a new VC with a formula such as below to include an emoji into only today's record, and set the new VC as the Label column.

IFS( [date]=TODAY() , "โš ๏ธ" ) & [date]

 

 

 

thanks marc, thats a good workaround!

 

Top Labels in this Space