problema legend grafica
Hola estoy haciendo una grafica y el problema que tengo es que quiero que se muestre el nombre correcto del monto que estoy graficando actualmente sale el nombre del objeto como monto y necesito cambiar el texto por algo mas representativi pero no encuentro como anexo mi js
Ext.create('Ext.chart.Chart', {
renderTo:'grafica',
width: 600,
height: 500,
animate: true,
store:store,
legend :true,
autoScroll :true,
axes: [
{
type: 'Numeric',
position: 'left',
fields: ['monto','monto2',,'monto3','monto4'],
label:{
renderer: Ext.util.Format.usMoney
},
grid: true
},
{
type: 'Category',
position: 'bottom',
fields:['ejercicio'],
label: {
rotate: {
degrees: 315
}
}
}
],
series: [
{
type: 'line',
highlight: {
size: 7,
radius: 7
},
tips: {
trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('ejercicio') + ': ' + '$' + storeItem.get('monto'));
}
},
axis: 'left',
xField: 'ejercicio',
yField: 'monto',display:'Saldo Causado(SC)',
markerConfig: {
type: 'cross',
size: 4,
radius: 4,
'stroke-width': 0
},
},
{
type: 'line',
highlight: {
size: 7,
radius: 7
},
tips: {
trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('ejercicio') + ': ' + '$' + storeItem.get('monto2'));
}
},
axis: 'left',
xField: 'ejercicio',
yField: 'monto2',
markerConfig: {
type: 'circle',
size: 4,
radius: 4,
'stroke-width': 0
}
},
{
type: 'line',
highlight: {
size: 7,
radius: 7
},
tips: {
trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('ejercicio') + ': ' + '$' + storeItem.get('monto3'));
}
},
axis: 'left',
xField: 'ejercicio',
yField: 'monto3',
markerConfig: {
type: 'circle',
size: 4,
radius: 4,
'stroke-width': 0
}
},
{
type: 'line',
highlight: {
size: 7,
radius: 7
},
tips: {
trackMouse: true,
width: 140,
height: 28,
renderer: function(storeItem, item) {
this.setTitle(storeItem.get('ejercicio') + ': ' + '$' + storeItem.get('monto4'));
}
},
axis: 'left',
xField: 'ejercicio',
yField: 'monto4',
markerConfig: {
type: 'circle',
size: 4,
radius: 4,
'stroke-width': 0
}
}
]
});
¿Conoces a alguien que pueda responder esta pregunta? Comparte el link en Twitter o Facebook
Es necesario registrarse para poder participar en el foro! Si ya tienes una cuenta puedes entrar y comentar en este foro.