Use this method to save the chart data array values to the system clipboard. The entire contents of the chart data array is saved to the clipboard, along with a header line containing each profile name and its associated scale label. This method is equivalent to selecting the Export Data button in the Toolbar.
[Visual Basic] Sub SaveChartDataToClipboard(Optional strDelimiter As String = vbTab, Optional bVisibleProfilesOnly As Boolean = False) [C#] void XYChartNETCtl.SaveChartDataToClipboard(System.String strDelimiter, System.Boolean bVisibleProfilesOnly ) [C++] void SaveChartDataToClipboard(System::String __gc *, bool)
XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.
[Visual Basic] XYChartNETCtl1.SaveChartDataToClipboard() 'Save data to clipboard using default parameter values [C#] XYChartNETCtl1.SaveChartDataToClipboard(",", false); //Save data to clipboard [C++] XYChartNETCtl1->SaveChartDataToClipboard(",", false); //Save data to clipboard