我无法找到如何在Extjs4中隐藏轴标签。拜托,有人吗?
感谢。
修改: 我需要的是摆脱x轴上的所有标签(x值)。
答案 0 :(得分:4)
在axes属性对象中使用hidden:true。
{
//title: 'Size',
type: 'Numeric',
position: 'left',
hidden: true, // <------
fields: ['sizeInBytes'],
minimum: 0
}
答案 1 :(得分:1)
这对我有用,但看起来很难看
label: {
renderer: function(name) {
return '';
}
}
答案 2 :(得分:0)
简短的问题,简短的回答:只需将轴title
留空即可。
答案 3 :(得分:0)
{
//title: 'Size',
type: 'Numeric',
position: 'left',
fields: ['sizeInBytes'],
minimum: 0,
label : {
return '';
}
}
答案 4 :(得分:0)
我认为您想要做的是绘制主轴线,但是不要为每个轴的步骤渲染标签吗?
这似乎对我有用:
{
type : "Category",
position : "bottom",
fields : ["person"],
title : "",
hidden : false,
drawLabel: function(){
return null;
}
}
- &GT;见drawLabel()