Issues Migrating from Activex 7 to Activex 2012
Posted: Fri Jun 21, 2013 3:46 pm
We have upgraded from ActiveX 2007 to ActiveX2012, While migrating we encountered a few issues which are as follows. I am attaching a jpg with the issues.
Steema Software - Customer Support Forums
http://216.92.243.79/support/
Code: Select all
TChart1.Aspect.View3D = False
Dim i As Integer
For i = 0 To 20
TChart1.AddSeries scLine
TChart1.Series(i).FillSampleValues 5
Next i
TChart1.Tools.Add tcLegendScrollBar
TChart1.Legend.CheckBoxes = True
Code: Select all
Private Sub TChart1_OnAfterDraw()
TChart1.Canvas.Brush.Style = bsClear
TChart1.Canvas.TextOut 100, 100, "hello chart"
End Sub