Example: IsolatedGraphing property
Private Sub IsolatedGraphing_Click() Dim y as YAxis Set y = Trend1.YAxis If y.IsolatedGraphingMode Then y.IsolatedGraphingMode = False Else y.IsolatedGraphingMode = True y.PercentIsolation = 10 End If End Sub
Provide Feedback