Use this property to return/set values that determines the chart control's event logging characteristics. LogEvent uses the LogEvent Class set of properties for its characteristics.
[Visual Basic] Property LogEvent() As C_LogEvent [C#] XYChartNet.XYChartNETCtl.C_LogEvent XYChartNETCtl.LogEvent [C++] __property XYChartNet::XYChartNETCtl::C_LogEvent __gc *XYChartNet::XYChartNETCtl::LogEvent
XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.
[Visual Basic] Private Sub Form_Load() Dim strTmp1 As String Dim strTmp2 As String With XYChartNETCtl1.LogEvent .Enable = True 'Turn the logging feature ON strTmp1 = .FormName 'Get the current name used to identify the form strTmp2 = .CTRLInstName 'Get the current name used to identify the XYChartNETCtl object .FormName = "FORM_Sample1" 'Identify form as "FORM_Sample1" .CTRLInstName = "CTRL_Chart1" 'Identify the XYChartNETCtl object as "CTRL_Chart1" .Clear 'Clear all entries in XYChartNET event source End With End Sub [C#] [C++]