Click or drag to resize

ExtensionsClassGatherApplicationInformation Method

LightningChart .NET Help
Gathers various information from the current chart for debugging purposes as a string by calling GatherApplicationInformation(ChartToolsGatherDataOptions, LightningChart, String, String) Optionally saves the output to a text file if file path and file name are specified. Gathered data (if ChartToolsGatherDataOptions is set to All): system information, chart information, list of running processes, DxDiag output, installed Windows hotfixes.

Namespace:  Arction.Wpf.Charting
Assembly:  Arction.Wpf.Charting.LightningChart (in Arction.Wpf.Charting.LightningChart.dll) Version: 10.3.1
Syntax
public static string GatherApplicationInformation(
	this LightningChart chart,
	ChartToolsGatherDataOptions options,
	string path = null,
	string fileName = null
)

Parameters

chart
Type: Arction.Wpf.ChartingLightningChart
Chart to collect data from.
options
Type: Arction.Wpf.ChartingChartToolsGatherDataOptions
Data gathering options flags. See ChartToolsGatherDataOptions.
path (Optional)
Type: SystemString
Path to folder where file is saved (optional, if not specified the data won't be saved to a file and just returned as a string).
fileName (Optional)
Type: SystemString
Output text file filename (optional, if not specified the default name is created with timestamp)

Return Value

Type: String
The gathered data as a string.

Usage Note

In Visual Basic and C#, you can call this method as an instance method on any object of type LightningChart. When you use instance method syntax to call this method, omit the first parameter. For more information, see Extension Methods (Visual Basic) or Extension Methods (C# Programming Guide).
See Also