Sencha Touch 交流 QQ 群 224711028
label部分即为配置方法:
series: [{
type: 'column',
highlight: true,
title: ['m1'],
axis: 'left',
xField: 'DateTime',
yField: 'm1',
showInLegend: true,
label: {
display: 'insideEnd',
field: 'm1',
renderer: function(v, params, record){
//alert(v);
return v.toString().substring(0,5);
},
orientation: 'horizontal',
color: '#333',
'text-anchor': 'middle'
}
}]