score:1

ticks: {
    major: {
        fontsize: 14,
        fontstyle: "bold"
    },
    callback: function(value, index, values) {
        if(values[index] !== undefined)
        {
            if(values[index].major==true)
            {
                return moment(values[index].value).format('dd/mm');
            }
            else
            {
                return value;
            }
        }
    }
}

Related Query

More Query from same tag