我正在使用带有x,y位置的项目来显示图表的子标题。 但是条形高度超过标题如何设置默认的最大条形高度
答案 0 :(得分:0)
renderer: function(sprite, record, attr, index, store)
{
if(attr.height>=27)
{
attr.height=attr.height-27;
attr.y=attr.y+27;
}
}
//By using this code we can set maximum height of bar is it correct