pls i search in the tutorials but i need criticatly the steps sample
after opening data base
to draw point o Or x
using vb6
some thing i'cant under stand lik
AddOHLC
GetInversionColumn
can u provide me sample code
thanks 4 ever and never
point figure sample code with vb6
-
- Site Admin
- Posts: 14730
- Joined: Mon Jun 09, 2003 4:00 am
- Location: Banyoles, Catalonia
- Contact:
Hello,
Yes, you can populate PointFigure series like this:
AddOHLC method uses a DateTime value for x values and then open, high, low and close values for the PointFigure series.
GetInversionColumn returns the column index where the index'th parameter point is located.
Point and Figure series draw columns where each step in the column corresponds to a point in the underlying datasource series.
Yes, you can populate PointFigure series like this:
Code: Select all
Private Sub Form_Load()
TChart1.AddSeries scPointFigure
For i = 0 To 10
TChart1.Series(0).asPointFigure.AddOHLC Now + i, 10, 40, 5, 25
Next
End Sub
GetInversionColumn returns the column index where the index'th parameter point is located.
Point and Figure series draw columns where each step in the column corresponds to a point in the underlying datasource series.
Best Regards,
Narcís Calvet / 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 |