Just get the month from a date

Hello!

You could either try to cast the month out from you data source query or format the value in the table/chart mappings.

The former would look something like:

SELECT MONTH(yourDateValue) AS Month

For the latter, you would make a new Date object with moment using something like:

{{ new moment(item).format("MMM") }}

1 Like