I want change the titleFormat of my calendar.
At present, the title is in an h2 tag and we cannot personalize it by adding html code to the titleFormat option. For
A simple way is to overwrite the view.title within the viewRender event:
... , header: { center: 'title', }, viewRender: function(view, element) { view.title = 'Your Custom Title'; }, ...