Custom graphcs
Posted: Tue Dec 02, 2003 9:16 am
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
Steema Software - Customer Support Forums
http://216.92.243.79/support/
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