Click or drag to resize

APIgetDataPlot(Double, Double, String, String, String, String) Method

Get plot of the given user data
REST path: /function/plotdata/[name]
REST verb: GET
REST header: {"path", imagePath}, {"xseries", xseries}, {"yseries", yseries}, {"Xunits", Xunits}, {"Yunits", Yunits}

Namespace: NextFEMapi
Assembly: NextFEMapi (in NextFEMapi.dll) Version: 2.5.4.0 (2.5.4.0)
Syntax
public bool getDataPlot(
	double[] xseries,
	double[] yseries,
	string imagePath,
	string name = "",
	string Xunits = "",
	string Yunits = ""
)

Parameters

xseries  Double
X series of user data
yseries  Double
Y series of user data
imagePath  String
Path of the image to be written
name  String  (Optional)
Optional. Title of the plot
Xunits  String  (Optional)
Optional. Units for x axis
Yunits  String  (Optional)
Optional. Units for y axis

Return Value

Boolean
True if successful
See Also