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

Default Value

False

Example

XYChartNETCtl1 is the name of the XY Chart NET control instance placed on the form.

[Visual Basic]
XYChartNETCtl1.OverrideExportDataButton = True   'Do not execute XYChartNET's internal ExportData method

XYChartNETCtl1.OverrideExportDataButton = False  'Execute XYChartNET's internal ExportData method

[C#]
XYChartNETCtl1.OverrideExportDataButton = true;   //Do not execute XYChartNET's internal ExportData method

XYChartNETCtl1.OverrideExportDataButton = false;  //Execute XYChartNET's internal ExportData method

[C++]
XYChartNETCtl1->OverrideExportDataButton = true;   //Do not execute XYChartNET's internal ExportData method

XYChartNETCtl1->OverrideExportDataButton = false;  //Execute XYChartNET's internal ExportData method

See Also

Properties | ExportDataButtonSelected | OverridePrintButton | OverrideSaveImageButton