Hi Roger,
Your code should be something like this:
jQuery.sap.require("sap.ui.core.format.DateFormat");
var oDateFormat = sap.ui.core.format.DateFormat.getInstance({style: "medium"});
measures: [{
group: 1,
name: 'att1',
value:{ path: "att1",
type: new sap.ui.model.type.Date({source:{pattern:"yyyy.MM.dd"}})
formatter: function(d){
return oDateFormat.format(new Date(d));
}
, }
}
Hope this helps.