ILNumerics Ultimate VS

LinePlot Constructor (InArraySingle, InArraySingle, Object, NullableColor, DashStyle, Int32, NullableColor, MarkerStyle)

ILNumerics Ultimate VS Documentation
ILNumerics - Technical Application Development
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,
	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
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

Reference