Hi,
I have a chart with category axis of type 'Date', base units are set to 'days'.
I wonder how to tell the chart to show labels in format of 'day of month', i.e. 'd' (reference), because if I use either
type: 'Date',
baseUnit: 'days',
labels: {
dateFormats: {
days: 'd',
},
}
or
type: 'Date',
baseUnit: 'days',
labels: {
format: 'd'
}
it shows me '06/29/2021' instead of '29'.
Thanks for any advice.
J