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't find anything about this. if so , any tip to share? it would be something like this  gauge with titles

EDIT: i found there is a property to create text sprites for the title or any labels at the Ex.draw package. but i couldnt understand how to use it..

anybdy here have done the same?

link|improve this question

Can you not just give the chart a title property? or is this not what ur looking for? – shane87 Jun 16 '11 at 14:45
i tried adding title : 'my title' but it didnt work :( cseems that hart doesnt have a title property – astrocybernaute Jun 16 '11 at 14:49
feedback

3 Answers

up vote 2 down vote accepted

Since Ext.chart.Chart is an Ext.draw.Component, you can add sprites as items of it. Try to use this:

Ext.create('Ext.chart.Chart', {
   default chart settings here

   ...

   items: [{
      type  : 'text',
      text  : 'Simple Title',
      font  : '14px Arial',
      width : 100,
      height: 30,
      x : 50, //the sprite x position
      y : 10  //the sprite y position
   }]
})
link|improve this answer
thanks a lot,this helped me a lot, but im wondering if u know of a way to make the x and y dynamic, like anchor for example, so when we change the size of the panel/window they will also move acordinally..do u get me? let me know if i need to explain more – astrocybernaute Sep 23 '11 at 17:34
feedback

You can simply add a sprite to the cart.surface:

var chart = Ext.create('Ext.chart.Chart', {
    ... default chart settings here ...
});
var sprite = Ext.create('Ext.draw.Sprite', {
    type: 'text',
    surface: chart.surface,
    text: 'Simple text',
    font: '12px Arial',
    x: 50,
    y: 0,
    width: 100,
    height: 100 
});
sprite.show(true);
chart.surface.add(sprite);

Hope it helps.

link|improve this answer
thanks, i tried it, i get Uncaught TypeError: Cannot call method 'add' of undefined on the chart.surface.add(sprite); – astrocybernaute Jul 13 '11 at 9:45
Is renderTo of your chart setted before you try to add the sprite? – Gerben Limburg Jul 13 '11 at 10:22
no.in fact i dont use render to, i just call my chart in my viewport when i need it – astrocybernaute Jul 13 '11 at 10:50
I'm afraid that is the problem. Can you try it with renderTo setted? – Gerben Limburg Jul 13 '11 at 11:00
1  
as far as I can see, yes. Than there is no surface and therefore you can add nothing. But I might be wrong. I didn't build Ext. – Gerben Limburg Jul 13 '11 at 11:32
show 3 more comments
feedback

Just put your chart inside a panel with the title you need.

Ext.create('Ext.panel.Panel', {
    title: 'My Title',
    layout: 'fit',
    items: yourChart
});
link|improve this answer
not what i meant, not title in the header of the panel i have that, but inside the panel right in the top or under the chart,cause in one panel i could have several charts like in the gauge example i mentionned in my question and i want to put a title for each one – astrocybernaute Jun 16 '11 at 15:21
edited my question,please look at the image – astrocybernaute Jun 16 '11 at 15:26
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.