I want to add a title to a chart, like in the gauge example or a pie chart. I want to display a title under or on top of the chart. Is this possible? I\'ve been looking and can\
Yes you can using Ext.chart.axis.Gauge. Inside items put an axis config with a title:
Ext.create('Ext.chart.Chart', { default chart settings here ... items: [{ axes: [ { position: 'gauge', type: 'Gauge', title: 'Net Pips', maximum: 500, minimum: 0 } ] }] })