Hello
How to make the toolbar showup for the chart? Am I doing something wrong in the code below?
Code:chart = Ext.chart.Chart({
width: 500,
height: 300,
animate: true,
store: store,
toolbar: {
position: 'top'
},
legend: {
position: {
portrait: 'bottom',
landscape: 'left'
},
dock: true
},
interactions: ['rotate', 'reset', 'piegrouping'],
series: series //series comes here....
});
