Code: Select all
Private Sub tc_ClickSeries(ByVal sender As System.Object, ByVal s As Steema.TeeChart.Styles.Series, ByVal valueIndex As Integer, ByVal e As System.Windows.Forms.MouseEventArgs) Handles tc.ClickSeries
Try
Dim edt As New Steema.TeeChart.Editors.SeriesEditor
edt.ShowModal(s)
Catch ex As Exception
m_control.Log.LogMsg(ex.Message, True, Constants.LOG_MESSAGE_TYPES.Error)
End Try
End Sub
Code: Select all
Private Sub tc_ClickAxis(ByVal sender As System.Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles tc.ClickAxis
Try
Dim axis As Steema.TeeChart.Axis = sender
Dim edt As New Steema.TeeChart.Editors.AxisEditor(axis, Me)
Steema.TeeChart.Editors.EditorUtils.ShowFormModal(edt)
Catch ex As Exception
m_control.Log.LogMsg(ex.Message, True, Constants.LOG_MESSAGE_TYPES.Error)
End Try
End Sub
Ta.