Hi, In my code the Xvalue of cursor does not correspond of the Label. It very strange. using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Wi...
So, after some search on the web. I found a solution like below : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using System.Windows.Documents; using System.Windows.Input; using Sy...
Hello Yeray, In fact, I had a chart with my CSV file but it is not refresh like you say. I see the different class, in WPF there are "timer" class and "DispatcherTimer". But I don't know really how to use it. On the web I found this code -> http://social.msdn.microsoft.com/forums/en-US/wpf/thread/aa...
Hi, ----> I would like to build a chart with a CSV file which is update every 100ms. I began to write the following code : using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Windows; using System.Windows.Controls; using System.Windows.Data; using Syste...
Hi Yeray, Thanks for your example, I was looking for a way to build this function with a global variable. Another thing: How to define the initial value of one cursor ?? is it like that ? // initial position double init_value; init_value = 200; Cursor_left.XValue = init_value; Thank you again for al...
The example of interpolating works but I can't do my objective. I want the Y value of each cursor for know the standard deviation between the two cursors. The problem : I can not take the value of each cursor because the function CHANGE return a VOID :!: like that : void cursor_right_Change(object s...
I show you my code : // use cursors this.Cursor_left = new Steema.TeeChart.WPF.Tools.CursorTool(); this.tChart1.Tools.Add(this.Cursor_left); this.Cursor_left.Style = Steema.TeeChart.WPF.Tools.CursorToolStyles.Vertical; //color of cursor Cursor_left.Pen.Color = System.Windows.Media.Colors.Green; this...