Click or drag to resize

APIgetMultiplePlots Method

Get plots of multiple series in a single image
REST path: /function/plotmultipledata/[transparent]/[name]/[Xunits]/[Yunits]/[showLegend]
REST verb: GET
REST header: {"colors", xseries}, {"useDots", yseries}
REST body: plotList

Namespace: NextFEMapi
Assembly: NextFEMapi (in NextFEMapi.dll) Version: 2.6.0.0 (2.6.0.0)
Syntax
public byte[] getMultiplePlots(
	List<List<double[]>> plotList,
	bool transparent = false,
	string[] names = null,
	string Xunits = "",
	string Yunits = "",
	int[] colors = null,
	bool[] useDots = null,
	bool showLegend = false
)

Parameters

plotList  ListListDouble
List of list of double[2] arrays
transparent  Boolean  (Optional)
If true, set transparent background
names  String  (Optional)
Optional. Titles of the plots
Xunits  String  (Optional)
Optional. Units for x axis
Yunits  String  (Optional)
Optional. Units for y axis
colors  Int32  (Optional)
Optional. Array of plot colors
useDots  Boolean  (Optional)
Optional. Array of boolean values for using dots in each plot
showLegend  Boolean  (Optional)
Optional. True to enable graph legend

Return Value

Byte
List of arrays of bytes
See Also