ZedGraphControl 标记曲线中的重要位置
在我的 C# 项目中,使用 zedGraphControl 绘制一条曲线
曲线中有几个最大值,并且 我想通过圈出最大值来突出显示它
如何添加到我的曲线?
LineItem myCurve = myPane.AddCurve("我的曲线", list, Color.Red, SymbolType.Circle); 没有参数设置为不连接点。在zedgraphcontrol中如何在不连接的情况下设置点
In my C# project use zedGraphControl to draw a curve
In the curve have several maximum values, and
I want to highlight that maximum values by circle it
How I add to my curve?
LineItem myCurve = myPane.AddCurve("My Curve", list, Color.Red, SymbolType.Circle);
there is no parameter set to not connected the points. In zedgraphcontrol how to set points without connecting
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
这是一个简化的示例。
我创建了两个 PointPairList,其中之一包含 double.NaN,以便它不会绘制连续的线段。然后,我将包含高光的线的符号设置为未填充的红色圆圈。
以下是一些很好的参考:
Here is a simplified example.
I've created two
PointPairList
s, one of which containsdouble.NaN
so that it does not draw contiguous line segments. I then set the symbol for the line that contains highlights to a non-filled red circle.Here are some good references: