本帖最后由 .net_wang 于 2021-5-6 11:26 编辑
LineCollections (线集) 演示示例: Line Collections; Line spectrogram; Stem plot LineCollection 是一些线段的集合。每个线段都是一条从 A 点到 B 点的线。一个 LineCollection 可包含数千条线段。与 PointLineSeries、FreeformPointLineSeries 或 SampleDataSeries 相比而言, LineCollection 在渲染数千条不同的线段方面非常有效。PointLineSeries、FreeformPointLineSeries 或 SampleDataSeries 在渲染由成千上万个点构成的连续多线段时的效率更高。 用 LineStyle 属性控制线条颜色、样式和宽度。在 Lines 属性中设置线段。 在 ViewXY.LineCollections 列表属性中添加 LineCollection 对象。 图: 三个应用中的 LineCollections;绿色是非常快速渲染的条棒,黄色为多段线 ,红色是任意三角形线框网格
为 LineCollection 设置数据 SegmentLine 结构包含四个字段: 将 SegmentLines 数组添加到 Lines 属性,方法如下: [C#] 纯文本查看 复制代码 lineCollection.Lines = new SegmentLine[] {
new SegmentLine(6,25,8,30),
new SegmentLine(8,30,7,40),
new SegmentLine(7,40,10,40),
new SegmentLine(10,40,12,28)};
lineCollection.Lines = new SegmentLine[] { new SegmentLine(6,25,8,30), new SegmentLine(8,30,7,40), new SegmentLine(7,40,10,40), new SegmentLine(10,40,12,28)};
遇到使用问题,关注Arction公众号可以跟官方技术支持在线聊天解决,技术支持这一块儿Lightningchart做的还是不错的。
后续我会不断更新LightingChart更详细的使用方法,写文不易,还望多多回复关注支持!谢谢!
最新版V10 LightningChart下载地址:猛击下载
|