Sencha touch Sencha触摸图-如何将百分比添加为左轴

Sencha touch Sencha触摸图-如何将百分比添加为左轴,sencha-touch,sencha-charts,Sencha Touch,Sencha Charts,我正在使用Sencha Touch charts 1.0.0。从文档中,只有type='Numeric',没有'percentage'类型 如何将百分比添加到左轴?我试着以百分比的形式给出数据(“20%”,等等),但是没有用。在你的坐标轴中添加这个 { type: 'Numeric', fields: ['Data'], position: 'left', label: { renderer: function(v) { return ((v *

我正在使用Sencha Touch charts 1.0.0。从文档中,只有type='Numeric',没有'percentage'类型


如何将百分比添加到左轴?我试着以百分比的形式给出数据(“20%”,等等),但是没有用。

在你的坐标轴中添加这个

{
 type: 'Numeric',
 fields: ['Data'],
  position: 'left',
label: {
         renderer: function(v) {
            return ((v * 100).toFixed(0)).concat('%');
                          }
                    }

 }