I mpaper Ext JS 4 line图组件。 它工作得很好,但当我贴上标语时,他们太密集。 我赢得了明显标记的数量,以便减少。 如何做到这一点? 我的轴心是:
{
type: Category ,
position: bottom ,
fields: [ date ],
grid: true,
label: {
field: label ,
rotate: { degrees:315 },
renderer: function(item) {
var date = new Date(item);
/* parseIntToStringWithZeros is a custom method somewhere else */
var day = parseIntToStringWithZeros(date.getDate());
var month = parseIntToStringWithZeros(date.getMonth());
result = day + - + month;
return result;
}
}
}