ssamayoa
15 Mar 2012, 7:16 PM
Setting this in graph's tips property:
{trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get("enviados"));
}}
Results in this code:
32787
No quotes in get() method. Tried with single and double quote.
Work arround: storeItem.data.<field>, example: storeItem.data.entregados
Regards.
{trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get("enviados"));
}}
Results in this code:
32787
No quotes in get() method. Tried with single and double quote.
Work arround: storeItem.data.<field>, example: storeItem.data.entregados
Regards.