Merge pull request #1158 from buster-so/hours-to-set-style-as-number

hot-fixes-baby
This commit is contained in:
Blake Rouse 2025-09-25 16:37:43 -06:00 committed by GitHub
commit 91470114b7
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 0 deletions

View File

@ -121,6 +121,9 @@ Only utilize the required/default fields unless the user specifically requests t
# #
# DATE PART RULES # DATE PART RULES
# - year → columnType: number, style: number, numberSeparatorStyle: null (no thousands separators). # - year → columnType: number, style: number, numberSeparatorStyle: null (no thousands separators).
# - second → columnType: number, style: number, numberSeparatorStyle: null
# - minute → columnType: number, style: number, numberSeparatorStyle: null
# - hour → columnType: number, style: number, numberSeparatorStyle: null
# - month/quarter/day_of_week → columnType: number, style: date, with convertNumberTo + makeLabelHumanReadable. # - month/quarter/day_of_week → columnType: number, style: date, with convertNumberTo + makeLabelHumanReadable.
# - When X-axis = [month, year] across multiple years → month.dateFormat: 'MMM' (renderer composes 'MMM YYYY' with the year part). # - When X-axis = [month, year] across multiple years → month.dateFormat: 'MMM' (renderer composes 'MMM YYYY' with the year part).
# - Full date/timestamp columns → columnType: date, style: date, include explicit dateFormat appropriate to the interval. # - Full date/timestamp columns → columnType: date, style: date, include explicit dateFormat appropriate to the interval.