ExtensionsClassGatherApplicationInformation Method |
LightningChart .NET Help
Namespace:
Arction.Wpf.ChartingMVVM
Assembly:
Arction.Wpf.ChartingMVVM.LightningChart (in Arction.Wpf.ChartingMVVM.LightningChart.dll) Version: 10.3.1
Syntaxpublic static string GatherApplicationInformation(
this LightningChart chart,
ChartToolsGatherDataOptions options,
string path = null,
string fileName = null
)
<ExtensionAttribute>
Public Shared Function GatherApplicationInformation (
chart As LightningChart,
options As ChartToolsGatherDataOptions,
Optional path As String = Nothing,
Optional fileName As String = Nothing
) As String
public:
[ExtensionAttribute]
static String^ GatherApplicationInformation(
LightningChart^ chart,
ChartToolsGatherDataOptions options,
String^ path = nullptr,
String^ fileName = nullptr
)
Parameters
- chart
- Type: Arction.Wpf.ChartingMVVMLightningChart
Chart to collect data from. - options
- Type: Arction.Wpf.ChartingMVVMChartToolsGatherDataOptions
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:
StringThe 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