hello
is it possible to put marks on some point of a FastLine
my FastLine represents the operation of a motor, I have put marks on the points out of tolerance.
but the "MARKS" are drawn on every point and annotation not scroll with the fast line.
Is there a solution.
thank you
[ANSWERED] somme marks in a fast line
[ANSWERED] somme marks in a fast line
Last edited by jika on Tue Apr 09, 2013 8:22 am, edited 1 time in total.
Re: somme marks in a fast line
Hello jika,
Yes is possible, you only must access to the items of Marks you don't want are visible as do in next lines of code:
Thanks,
Yes is possible, you only must access to the items of Marks you don't want are visible as do in next lines of code:
Code: Select all
Private Sub Form_Load()
TChart1.AddSeries scFastLine
TChart1.Series(0).FillSampleValues 10
TChart1.Series(0).Marks.Visible = True
Dim i As Integer
For i = 0 To 10
If (TChart1.Series(0).XValues.Value(i) Mod 2 = 0) Then
TChart1.Series(0).Marks.Item(i).Visible = False
End If
Next
End Sub
Best Regards,
Sandra Pazos / Development & Support Steema Software Avinguda Montilivi 33, 17003 Girona, Catalonia Tel: 34 972 218 797 http://www.steema.com |
Instructions - How to post in this forum |