何在ext js柱形图中设置最大条形图高度?

时间:2016-12-20 10:15:05

标签: extjs extjs4 extjs4.2 extjs5

我正在使用带有x,y位置的项目来显示图表的子标题。 但是条形高度超过标题如何设置默认的最大条形高度

1 个答案:

答案 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