Table of Contents

Class PlotXY

Namespace
TimeSeriesAnalysis.Utility
Assembly
TimeSeriesAnalysis.dll

Programatically calls plotly to create an in-browser xy-plot of given input data. A utility class mainly intended for debugging.

public class PlotXY
Inheritance
PlotXY
Inherited Members

Methods

FromTable(XYTable, string, string, bool)

Make an xy-plot from an XYtable entry

public static string FromTable(XYTable table, string caseName, string comment = null, bool doStartChrome = true)

Parameters

table XYTable
caseName string
comment string
doStartChrome bool

Returns

string

FromTables(List<XYTable>, string, string, bool)

Make an xy-plot from a list of XYTable entries

public static string FromTables(List<XYTable> tables, string caseName, string comment = null, bool doStartChrome = true)

Parameters

tables List<XYTable>

List of XYtables containing the data to be plotted

caseName string

a unique string that is used to keep the data separate from all other simultanously created plots

comment string

a string that is added to the top of the plot (often, a user-friendly name of the output)

doStartChrome bool

if true then a chrome window will be opened (by default this is true)

Returns

string