1

我正在将我的数据绘制到 ZedGraph。用于FileStream读取文件。有时我的数据大于 200 兆字节。要绘制这么多数据,我应该计算峰值或必须应用一个窗口。但是我想查看缩放区域的所有点。请分享任何建议。

        PointPairList list1 = new PointPairList();
        int read;
        int count = 0;
        while (file.Position < file.Length)
        {
            read = file.Read(mainBuffer, 0, mainBuffer.Length);
            for (int i = 0; i < read / window; i++)
            {
                list1.Add(count++, BitConverter.ToSingle(mainBuffer, i * window));
                count++;
            }
        }
        myCurve1 = zgc.MasterPane.PaneList[1].AddCurve(null, list1, Color.Lime, SymbolType.None);
        myCurve1.IsX2Axis = true;
        zgc.MasterPane.PaneList[1].XAxis.Scale.MaxAuto = true;
        zgc.MasterPane.PaneList[1].XAxis.Scale.MinAuto = true;
        zgc.AxisChange();
        zgc.Invalidate();

window=2048文件大小在 100 兆字节到 300 兆字节之间。

4

1 回答 1

1

PointPairList我建议不要使用 a ,而是使用 a FilteredPointList。通过这种方式,您可以将每个点保存在内存中,ZedGraph 只会显示需要显示的点。

FilteredPointList门课在这里得到了很好的解释。

您将不得不以这种方式更改您的代码:

// Load the X, Y points in two double arrays
// ...

var list1 = new FilteredPointList(xArray, yArray);

// ...

// Use the ZoomEvent to adjust the bounds of the filtered point list

void zedGraphControl1_ZoomEvent(ZedGraphControl sender, ZoomState oldState, ZoomState newState)
{
    // The maximum number of point to displayed is based on the width of the graphpane, and the visible range of the X axis
    list1.SetBounds(sender.GraphPane.XAxis.Scale.Min, sender.GraphPane.XAxis.Scale.Max, (int)zgc.GraphPane.Rect.Width);

    // This refreshes the graph when the button is released after a panning operation
    if (newState.Type == ZoomState.StateType.Pan)
        sender.Invalidate();
}

编辑

如果您不能在内存中托管所有点,那么您将不得不IPointList使用上面描述的代码中的逻辑为 ZedGraph 提供自己的实现。您可以从FilteredPointList本身获得灵感。

我将使用该SetBounds方法从磁盘预加载点,基于您已经实现的抽取算法,使用参数中的 min、max 和 MaxPts。

于 2013-10-08T20:49:19.680 回答