由于缺乏文档,我对这个库仍然非常粗糙。
我有一个ChartPlotter对象,它通过捕获设备中的数据捕获实时数据。 每当我从设备获得新数据时,我都会调用以下事件:
private void OnRawDataChanged(object sender, RawDataChangedEventArgs e)
{
System.Diagnostics.Debugger.Log(0, "event", "event received from data manager\n");
System.Diagnostics.Debugger.Log(0, "event", e.NewRawDataSet.Length + " tuples of data returned\n");
var batchSize = e.NewRawDataSet.Length;
// Expected tuples of 2 values + 2 threshold values
Point[][] points = new Point[4][];
for (int i = 0; i < 4; i++)
{
points[i] = new Point[batchSize];
}
double period = 1.0 / Properties.Settings.Default.SamplingRate;
for (int i = 0; i < batchSize; i++)
{
// Time is expressed in milliseconds
double t = e.NewRawDataSet[i].Time / 1000.0;
points[0][i] = new Point(t, e.NewRawDataSet[i].Sensors[0]);
points[1][i] = new Point(t, e.NewRawDataSet[i].Sensors[1]);
points[2][i] = new Point(t, parentForm.PressureHisteresysOpen);
points[3][i] = new Point(t, parentForm.PressureHisteresysClose);
}
plotter.Dispatcher.Invoke(DispatcherPriority.Normal,
new Action(() =>
{
sensor0.AppendMany(points[0]);
sensor1.AppendMany(points[1]);
pressureOpen.AppendMany(points[2]);
pressureClose.AppendMany(points[3]);
}));
}
使用ChartPlotter的标准设置,图形将自动适合窗口。 我想让水平轴自动向左滚动,只显示捕获的最后10秒(例如)。有没有办法实现这个目标?
由于
答案 0 :(得分:2)
要实现此目的,您必须修改plotter.ViewPort.Visible属性。此属性采用您使用值构造的DataRect对象以形成矩形。每次收到新数据时,都必须重新计算此矩形,以便图表滚动查看。
以下是构建DataRect的示例:
double yMin = 1;
double yMax = 10;
double xMin = 1;
double xMax = 10;
plotter.ViewPort.Visible = new DataRect(xMin, yMin, xMax - xMin, yMax - yMin);
您的分数和最大值将基于轴上的数据类型。