我的 tchart 中有 fastline。
我正在向 fastline 添加一个数组作为数据源。
在运行时,在 tchart 中绘制 fastline。现在我想做的是从它的特定点拖动一条线,上下移动等等,结果 fastline 将改变数据点的值和形状。一旦用户这样做,我会将数据从 fastline 获取到数组。像这样的拖动功能。http://www.algorithmist.net/qbparam.html 所以,我可以用鼠标控制线路。
可能吗?
谢谢你。
我的 tchart 中有 fastline。
我正在向 fastline 添加一个数组作为数据源。
在运行时,在 tchart 中绘制 fastline。现在我想做的是从它的特定点拖动一条线,上下移动等等,结果 fastline 将改变数据点的值和形状。一旦用户这样做,我会将数据从 fastline 获取到数组。像这样的拖动功能。http://www.algorithmist.net/qbparam.html 所以,我可以用鼠标控制线路。
可能吗?
谢谢你。
您可以为此使用该DragPoint
工具。
请参阅安装随附的功能演示中的“所有功能\欢迎!\工具\拖动点”中的示例。
这是一个例子:
Steema.TeeChart.Styles.Line line1 = new Steema.TeeChart.Styles.Line();
tChart1.Series.Add(line1);
line1.fillSampleValues();
Steema.TeeChart.Tools.DragPoint dragPoint1 = new Steema.TeeChart.Tools.DragPoint();
tChart1.Tools.Add(dragPoint1);
dragPoint1.Cursor = System.Windows.Forms.Cursors.Hand;
dragPoint1.Series = line1;