So I implemented the gauge chart example from the sencha website in this link : http://dev.sencha.com/deploy/touch-charts-rc/examples/Gauge/

But now I want to add a title under each of the 4 gauges. For eg: Under the first one there should be a title "Data 1" etc.

I also tried the "tips:" code from the Sencha API docs and it doesnt seem to work.

I can't seem to be able to do this. What should I do ??

Here's my code :

items: [
            {
                animate: {
                    easing: 'elasticIn',
                    duration: 1000
                },
                store: EnergyApp.stores.DashStore,
                axes: [{
                    type: 'gauge',
                    position: 'gauge',
                    minimum: 0,
                    maximum: 1000,
                    steps: 10,
                    margin: 10
                }],
                series: [{
                    //title : 'Heyyyy ohh this one',
                    type: 'gauge',
                    field: 'generatedpv',
                    donut: false,
                    colorSet: ['#F49D10', '#ddd']
                }]
           }]

Help :(

link|improve this question

44% accept rate
feedback

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
or
required, but never shown

Browse other questions tagged or ask your own question.