Hello,
at the moment, I am using v6. There was no matter when trying to show source series and funtion series together.
When I deactivated the source series and tried to show only the function series, the label was not printed on screen.
I would appreciate the help.
Thanks.
Would like to use Funtion Series...
-
- Site Admin
- Posts: 1349
- Joined: Thu Jan 01, 1970 12:00 am
- Location: Riudellots de la Selva, Catalonia
- Contact:
Hi -
The following code works OK here .. does it work OK at your end?at the moment, I am using v6. There was no matter when trying to show source series and funtion series together.
When I deactivated the source series and tried to show only the function series, the label was not printed on screen.
I would appreciate the help.
Code: Select all
Private Sub Command1_Click()
With TChart1
.Series(0).Active = False
.Series(1).CheckDataSource
End With
End Sub
Private Sub Form_Load()
With TChart1
.AddSeries scLine
.Series(0).FillSampleValues 20
.AddSeries scLine
.Series(1).SetFunction tfCumulative
.Series(1).DataSource = .Series(0)
.Series(1).CheckDataSource
End With
End Sub
Thank you!
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/
Christopher Ireland (Steema crew)
Please be aware of the newsgroup archives:
http://www.teechart.net/support/search.php
http://groups.google.com
http://codenewsfast.com/