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<double> X, InArray<double> Y, 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: ILNumericsInArrayDouble
Vector with X values - Y
- Type: ILNumericsInArrayDouble
Vector with Y values - tag (Optional)
- Type: SystemObject
[optionial] tag identifying the plot in the scene - lineColor (Optional)
- Type: SystemNullableColor
[optional] color of the line, default: auto - 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