 | 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: NextFEMapiAssembly: NextFEMapi (in NextFEMapi.dll) Version: 2.5.4.0 (2.5.4.0)
Syntaxpublic bool getDataPlot(
double[] xseries,
double[] yseries,
string imagePath,
string name = "",
string Xunits = "",
string Yunits = ""
)
Public Function getDataPlot (
xseries As Double(),
yseries As Double(),
imagePath As String,
Optional name As String = "",
Optional Xunits As String = "",
Optional Yunits As String = ""
) As Boolean
Dim instance As API
Dim xseries As Double()
Dim yseries As Double()
Dim imagePath As String
Dim name As String
Dim Xunits As String
Dim Yunits As String
Dim returnValue As Boolean
returnValue = instance.getDataPlot(xseries,
yseries, imagePath, name, Xunits,
Yunits)
public:
bool getDataPlot(
array<double>^ xseries,
array<double>^ yseries,
String^ imagePath,
String^ name = L"",
String^ Xunits = L"",
String^ Yunits = L""
)
member getDataPlot :
xseries : float[] *
yseries : float[] *
imagePath : string *
?name : string *
?Xunits : string *
?Yunits : string
(* Defaults:
let _name = defaultArg name ""
let _Xunits = defaultArg Xunits ""
let _Yunits = defaultArg Yunits ""
*)
-> bool
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
BooleanTrue if successful
See Also