in
Forums
Blogs
Files
Devexpress.Com
Client Center
Support Center
DevExpress Channel

Interactive Charts

Last post 11/6/2007 2:47 AM by Holger Persch [DX-Squad]. 5 replies.
Page 1 of 1 (6 items)
Sort Posts:
Previous Next
  • 9/21/2007 8:16 AM

    Interactive Charts

    Is there any way to get if a line or point or "seriese" was clicked on in
    the chart? Basically I'd like to make a tooltip that pops up with more
    information about that point when the user puts the mouse over it or clicks
    on a line. thanks!
  • 9/21/2007 9:16 AM In reply to

    Re: Interactive Charts

    Hello Brian,

    Do you use Win or Web charts? If you're referring to Win charts, then it is possible in the current XtraCharts version. For more information, please see the following tutorial:
    http://devexpress.com/Help/Content.aspx?help=XtraCharts&document=CustomDocument3248.htm

    @.
    R&D, .NET Team.

    PS. If you wish to receive direct assistance from our Support Team, use Support Center at http://www.devexpress.com/sc.
    Filed under: ,
  • 9/21/2007 9:33 AM In reply to

    Re: Interactive Charts

    yep winforms charting... one last question though, is there anyway to
    "highlight" a seriese as the mouse is over it? It'd be nice to point out
    this is the one that you have selected visually also.. thanks!

    wrote in message
    news:195368@community.devexpress.com...
    > Hello Brian,
    >
    > Do you use Win or Web charts? If you're referring to Win charts, then it
    > is possible in the current XtraCharts version. For more information,
    > please see the following tutorial:
    > http://devexpress.com/Help/Content.aspx?help=XtraCharts&document=CustomDocument3248.htm
    >
  • 9/26/2007 4:31 AM In reply to

    Re: Interactive Charts

    Hi Brian,

    To accomplish this task, you should do the following:

    1. Set the ChartControl.RuntimeSelection property to True.

    2. Handle the ChartControl.ObjectSelected and ObjectHotTracked events as follows:

    private void chartControl1_ObjectSelected(object sender, DevExpress.XtraCharts.HotTrackEventArgs e) {
        if (e.Object is Series)
            e.Cancel = false;
        else
            e.Cancel = true;
    }

    This should do the trick ;-)

    @.
    R&D, .NET Team.

    PS. If you wish to receive direct assistance from our Support Team, use Support Center at http://www.devexpress.com/sc.
  • 11/5/2007 7:33 AM In reply to

    Re: Interactive Charts

    Hello, I want to show an XYgraph and let the user modify the points of the graph (graphically). Later, I want to take the values to save them in my database. Can I do this with XtraChart?
    Thanks a lot.

  • 11/6/2007 2:47 AM In reply to

    Re: Interactive Charts

    Hello,

    This will become possible with DXperience v2007 vol 3.

    Please refer to the following link for more information: What's New in DXperience v2007 vol 3

    Regards,
    Holger

    Holger Persch - [DX-Squad]
Page 1 of 1 (6 items)
Copyright © 1998-2008 Developer Express Inc.
ALL RIGHTS RESERVED