我正在使用Sencha Touch图表1.0.0。从文档中,只有type ='Numeric',没有'percentage'类型。
如何在左轴上添加百分比?我尝试将数据作为百分比('20%',等等),但它没有用。
答案 0 :(得分:1)
只需添加它,
{
type: 'Numeric',
fields: ['Data'],
position: 'left',
label: {
renderer: function(v) {
return ((v * 100).toFixed(0)).concat('%');
}
}
}