[CLOSED] Text on Series and Tool tips for Grouped Bar Chart

  1. #1

    [CLOSED] Text on Series and Tool tips for Grouped Bar Chart

    Hi

    We are charged with developing a grouped bar chart and we are currently facing the following problems

    1. Tooltips for individual bars in a group on mouse-over.
    2. Labels reflecting the value for each bar in a group.

    Please help us so that we can achieve the same.
    Last edited by Daniil; Jul 19, 2012 at 3:36 PM. Reason: [CLOSED]
  2. #2
    Hi,

    Quote Originally Posted by WHISHWORKS View Post
    1. Tooltips for individual bars in a group on mouse-over.
    2. Labels reflecting the value for each bar in a group.
    Please configure the Series Tips property.

    Here is some example how to use the Tips.
    https://examples2.ext.net/#/Chart/Misc/ToolTips/

    Quote Originally Posted by WHISHWORKS View Post
    2. Labels reflecting the value for each bar in a group.
    At the first glance I can't understand how it should looks. Could you clarify with a screenshot?
  3. #3
    Click image for larger version. 

Name:	chart.PNG 
Views:	213 
Size:	6.1 KB 
ID:	4485

    Hi Danii,

    PFA the screenshot for the chart I was referring to in the previous thread.

    We have also gone through the link you have sent without any luck ! :(

    Following is what we wish to incorporate into the chart:
    1. Tooltip for individual bar for the same group (different tooltip for bar represented by green,blue and red.).
    2. Labels for each of the bars representing their value.

    Please let us know if this is clear enough.

    Thanks.
  4. #4
    1. Tooltip for individual bar for the same group (different tooltip for bar represented by green,blue and red.).
    You could achieve that setting up the following Tips:
    <ext:BarSeries 
        Axis="Bottom"
        XField="Name"
        YField="Data1,Data2,Data3">
        <Tips runat="server">
            <Items>
                <ext:Label runat="server" />
            </Items>
            <Renderer Handler="this.getComponent(0).setText(Ext.encode(item.value));" />
        </Tips>
    </ext:BarSeries>
    in the example below
    https://examples2.ext.net/#/Chart/Bar/Grouped/

    2. Labels for each of the bars representing their value.
    There are already these labels in the example I have mentioned.

    You can set up its position configuring the LegendConfig.
    <LegendConfig Position="Top" />

Similar Threads

  1. Replies: 2
    Last Post: Aug 13, 2012, 2:12 PM
  2. Replies: 3
    Last Post: Jul 13, 2012, 10:28 AM
  3. [RAZOR] How to add tips to chart
    By Natalie in forum 2.x Help
    Replies: 0
    Last Post: May 15, 2012, 3:20 PM
  4. Replies: 4
    Last Post: May 27, 2010, 6:28 PM
  5. [CLOSED] Tips in Regions not working
    By randy85253 in forum 1.x Legacy Premium Help
    Replies: 3
    Last Post: Apr 04, 2010, 1:51 PM

Tags for this Thread

Posting Permissions