Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何剪切条形图控件基轴的长标签?我已经尝试在扩展点(baseAxisLabel_text)中剪切它们:
function(a){ var str=this.scene.atoms.category.label; if (str.length>30){ str=str.substring(0,30)+' ...'; } return str; }
但是,似乎图表控件宽度是在考虑旧标签长度的情况下计算的。现在我的酒吧左侧有白色区域。 如何解决这个问题?
我找到了解决方案。
我只是将稍微更改的函数从扩展点(baseAxisLabel_text)移到了baseAxisTickFormatter(图表控件的高级属性)
function(v){ if (v.length>30){ v=str.substring(0,30)+' ...'; } return v; }