Custom graphcs
-
- Newbie
- Posts: 3
- Joined: Mon Dec 01, 2003 5:00 am
Custom graphcs
hi
could you please give example code in vb on how to add a custom image,bitmap,etc to each data series point in teechart v6
thanx
One example could be :
Josep Lluis Jorge
http://support.steema.com
Code: Select all
Private Sub Form_Load()
With TChart1
.Aspect.View3D = False
.AddSeries scPoint
.Series(0).FillSampleValues 10
ImageList1.ListImages.Add , , LoadPicture("C:\Documents and
Settings\Administrator\My Documents\My Pictures\sample.jpg")
.Series(0).asPoint.Pointer.Brush.AssignImage
ImageList1.ListImages.Item(1).Picture
End With
End Sub
http://support.steema.com