ILNumerics - Technical Application Development
Assembly: ILNumerics.Drawing (in ILNumerics.Drawing.dll) Version: ILNumerics Ultimate VS 4
Group node containing all line plots created
The group node returned contains one line plot for every row in A.
Every line plot gets a tag according to the following naming scheme: 'LinePlotXXXX',
where XXXX corresponds to the row index in A.
Creates a new X-line plot for every row in A
[ILNumerics Visualization Engine]
Namespace: ILNumerics.Drawing.Plotting
Assembly: ILNumerics.Drawing (in ILNumerics.Drawing.dll) Version: ILNumerics Ultimate VS 4
Syntax
public static Group CreateXPlots( InArray<float> A, IEnumerable<Color> lineColors = null, IEnumerable<DashStyle> lineStyles = null, IEnumerable<int> lineWidth = null, IEnumerable<MarkerStyle> markers = null )
Parameters
- A
- Type: ILNumericsInArraySingle
data matrix with individual line plot data in rows - lineColors (Optional)
- Type: System.Collections.GenericIEnumerableColor
[optional] defines colors for lines, plots without corresponding elements get default colors - lineStyles (Optional)
- Type: System.Collections.GenericIEnumerableDashStyle
[optional] defines dash styles, plots without corresponding elements are drawn as solid line - lineWidth (Optional)
- Type: System.Collections.GenericIEnumerableInt32
[optional] defines line width, plots without corresponding elements are drawn as 1px lines - markers (Optional)
- Type: System.Collections.GenericIEnumerableMarkerStyle
[optional] defines marker styles, plots without corresponding elements are drawn without markers
Return Value
Type: GroupGroup node containing all line plots created
Remarks
[ILNumerics Visualization Engine]
See Also