我的tchart中有快线。
我正在将数组添加到fastline作为数据源。
在运行时,快速线在tchart中绘制。现在我想做的是从它的特定点拖动一条线,上下移动等等,结果fastline将改变数据点值和形状。一旦用户这样做,我将从fastline到数组获取数据。 拖动功能就像这样。 http://www.algorithmist.net/qbparam.html 所以,我可以用鼠标控制线。
有可能吗?
谢谢。
答案 0 :(得分:3)
您可以使用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;