Calendar component: How to change date format

Is it possible for me to change the date format being displayed when in Week view or Day view ?
I would like to change date format to yyyy-MM-dd

Hi,

The setWeeklyCaptionFormat method can be used the define the date format, e.g.:

@Inject
protected Calendar<Date> calendar;

@Subscribe
protected void onInit(InitEvent event) {
    calendar.setWeeklyCaptionFormat("yyyy-MM-dd");
}

Screenshot 2020-11-30 at 13.04.52

Gleb