XY Chart NET 3 Control Reference > Properties > OverrideExportDataButton Property |
Use this property to return/set a boolean indicating whether the control's internal ExportData method is to be executed after the ExportData button in the chart's Toolbar is selected.
[Visual Basic] Property OverrideExportDataButton() As Boolean |
[C#] bool XYChartNETCtl.OverrideExportDataButton |
[C++] property bool XYChartNet::XYChartNETCtl::OverrideExportDataButton |
' XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.OverrideExportDataButton = True 'Do not execute XYChartNET's internal ExportData method XYChartNETCtl1.OverrideExportDataButton = False 'Execute XYChartNET's internal ExportData method
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1.OverrideExportDataButton = true; //Do not execute XYChartNET's internal ExportData method XYChartNETCtl1.OverrideExportDataButton = false; //Execute XYChartNET's internal ExportData method
// XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form. XYChartNETCtl1->OverrideExportDataButton = true; //Do not execute XYChartNET's internal ExportData method XYChartNETCtl1->OverrideExportDataButton = false; //Execute XYChartNET's internal ExportData method