ILNumerics - Technical Application Development
Assembly: ILNumerics.Drawing (in ILNumerics.Drawing.dll) Version: ILNumerics Ultimate VS 4
Create a new line plot based on individually provided X and Y values.
[ILNumerics Visualization Engine]
Namespace: ILNumerics.Drawing.Plotting
Assembly: ILNumerics.Drawing (in ILNumerics.Drawing.dll) Version: ILNumerics Ultimate VS 4
Syntax
public LinePlot( InArray<float> X, InArray<float> Y, InArray<float> Z, Object tag = null, Nullable<Color> lineColor = null, DashStyle lineStyle = DashStyle.Solid, int lineWidth = 1, Nullable<Color> markerColor = null, MarkerStyle markerStyle = MarkerStyle.None )
Parameters
- X
- Type: ILNumericsInArraySingle
Vector with X values - Y
- Type: ILNumericsInArraySingle
Vector with Y values - Z
- Type: ILNumericsInArraySingle
Vector with Z values - tag (Optional)
- Type: SystemObject
[optionial] tag identifying the plot in the scene - lineColor (Optional)
- Type: SystemNullableColor
[optional] color of the line, default: auto (sequencing individual colors via NextColors provider) - lineStyle (Optional)
- Type: ILNumerics.DrawingDashStyle
[optional] line style, default: solid - lineWidth (Optional)
- Type: SystemInt32
[optional] line width, default: 1px - markerColor (Optional)
- Type: SystemNullableColor
[optional], color for markers, default: auto - markerStyle (Optional)
- Type: ILNumerics.DrawingMarkerStyle
[optional], marker style, default: none
Remarks
X and Y are vectors of the same length. The orientation is not important.
[ILNumerics Visualization Engine]
See Also