Hello,
In my project I have a CWGraph with plot and one annotation (min max region). I have a VBtimer on form, and in this timer's event I am changing annotation coordinates type from axis to screen and back. In this case memory leak is ocurred. Timer frequency is about 10 ms. Please, help me to resolve it ?
Here is an expmle:
Private Sub Timer1_Timer()
Dim ann As CWAnnotation
Set ann = CWGraph1.Annotations.Item("Annotation-1")
ann.CoordinateType = cwAxesCoordinates
ann.CoordinateType = cwScreenCoordinates
End Sub