Class PlotXY
Programatically calls plotly to create an in-browser xy-plot of given input data. A utility class mainly intended for debugging.
Inherited Members
Namespace: TimeSeriesAnalysis.Utility
Assembly: TimeSeriesAnalysis.dll
Syntax
public class PlotXY
Methods
| Edit this page View SourceFromTable(XYTable, string, string, bool)
Make an xy-plot from an XYtable entry
Declaration
public static string FromTable(XYTable table, string caseName, string comment = null, bool doStartChrome = true)
Parameters
Type | Name | Description |
---|---|---|
XYTable | table | |
string | caseName | |
string | comment | |
bool | doStartChrome |
Returns
Type | Description |
---|---|
string |
FromTables(List<XYTable>, string, string, bool)
Make an xy-plot from a list of XYTable entries
Declaration
public static string FromTables(List<XYTable> tables, string caseName, string comment = null, bool doStartChrome = true)
Parameters
Type | Name | Description |
---|---|---|
List<XYTable> | tables | List of XYtables containing the data to be plotted |
string | caseName | a unique string that is used to keep the data separate from all other simultanously created plots |
string | comment | a string that is added to the top of the plot (often, a user-friendly name of the output) |
bool | doStartChrome | if true then a chrome window will be opened (by default this is true) |
Returns
Type | Description |
---|---|
string |