Your Privacy Matters: We use our own and third-party cookies to improve your experience on our website. By continuing to use the website we understand that you accept their use. Cookie Policy
145
Map mouse event coordinates to axis coordinates?
posted

Is there an example of how to do this correctly in the silverlight webchart? The examples I found on this site so far dont apply.

Parents
No Data
Reply
  • 1140
    posted

    if i am following you correctly then this might be what your looking for

     

     

     

    private

     

     

    void XamChart_MouseLeftButtonDown(object sender, System.Windows.Input.MouseButtonEventArgs e)

    {

     

     

     

    e.GetPosition(XamChart)

     

     

     

    }

Children