How to edit the Time label? #199
Answered
by
vkurko
jonathangoncalves
asked this question in
Q&A
-
I want to put some extra info in the event "time" label but I can't find a way to do it. I tried to use slotLabelFormat and eventTimeFormat but had no difference. Is it possible and how to do it? Example: Add a text or html after the time |
Beta Was this translation helpful? Give feedback.
Answered by
vkurko
Nov 6, 2023
Replies: 1 comment
-
This should output TEXT instead of time: eventTimeFormat: function (info) {
return 'TEXT';
}, But in this case you need to format the time yourself from |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
jonathangoncalves
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This should output TEXT instead of time:
But in this case you need to format the time yourself from
info.start
andinfo.end
.