I am using the Ultrachart in windows application and the version is 8.2. I have created the ultra chart as Composite chart with numeric time axis. for x axis datatype is time and y axis datatype is numeric . then i have add the two types of chart, step area chart and stack area chart and i have binded these charts using series. I want to capture the datavalue of the chart in mouse double click event So that i am capturing the mouse click event and i am able to capture only the form x value not ultra chart x xais value. How i can convert the value into the Ultrachart x axis value.
Note:-
the chartdata click event is not firing because i ploting chart using the series but not in datasource
Private Sub UltraChart1_MouseDoubleClick(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles UltraChart1.MouseDoubleClick
' Here i am able to capture only the e.x as form x axis i need to convert to ultrachart value
End Sub
Please any one help how to convert the windows form x value to a ultrachart x axis value