我正在将我的数据绘制到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兆字节之间。
答案 0 :(得分:0)
我建议使用PointPairList
而不是FilteredPointList
。通过这种方式,你可以保留每个内存点,ZedGraph只会显示显示所需的点。
FilteredPointList
课程已得到充分解释here。
你必须这样改变你的代码:
// 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();
}
修改强>
如果您无法在内存中托管所有点,那么您必须使用上述代码中的逻辑为ZedGraph提供自己的IPointList
实现。你可以从FilteredPointList本身启发。
我会使用SetBounds
方法根据您已经实现的抽取算法,使用参数中的min,max和MaxPts从磁盘预加载点。