【问题标题】:Sencha Touch chart - How to add percentage as left axisSencha Touch 图表 - 如何将百分比添加为左轴
【发布时间】:2012-03-07 07:53:42
【问题描述】:

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

如何向左轴添加百分比?我尝试以百分比形式提供数据('20%',.. 等),但没有奏效。

【问题讨论】:

    标签: sencha-touch sencha-charts


    【解决方案1】:

    在你的轴上添加这个,

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

    【讨论】:

      猜你喜欢
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 1970-01-01
      • 2013-03-18
      • 1970-01-01
      • 1970-01-01
      相关资源
      最近更新 更多