Hello
I create a chart in my windows phone application with AmChart ,I want to put the selected value in the chart in a textBox How can i do this
Thnaks 
 This is my XAML CODE
 
       
And This My c# CODE 
 
public ObservableCollection _data = new ObservableCollection()
 {
 new ItemData() { axis = "Jan", value=5},
 
 new ItemData() { axis = "Apr", value=10}
 };
        public ObservableCollection Data { get { return _data; } }


        private void PhoneApplicationPage_Loaded(object sender, RoutedEventArgs e)
        {
            this.DataContext = this;
        }

        public class ItemData
        {
            public string axis { get; set; }
            public double value { get; set; }

        }