如何在 ext js 柱形图中设置最大条形图高度?
Ho to set a maximum bar chart height in ext js column charts?
我正在使用带有 x、y 位置的项目来显示图表的子标题。
但是条形高度覆盖了标题如何在此处设置默认最大条形高度
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
我正在使用带有 x、y 位置的项目来显示图表的子标题。 但是条形高度覆盖了标题如何在此处设置默认最大条形高度
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