-
Notifications
You must be signed in to change notification settings - Fork 0
SVGraph_LinePlot2()
CapnOdin edited this page Jan 11, 2018
·
4 revisions
Draws a curve extrapolated from a set of points.
SVGraph_LinePlot2(LstX, LstY [, Colour, Width, ScaleAxes, Curve])
A list of the x-coordinates to be plotted in pairs with the y-coordinates from LstY.
A list of the y-coordinates to be plotted in pairs with the x-coordinates from LstX.
The colour of the curve, supports HTML Color Names or Color Values. e.g. "lightgrey" or "#FF00FF".
The width of the line, as a number followed by an optional Unit e.g. 3 or "5mm".
Note: If the unit is included there should be no space between the number and the unit.
A boolean determining whether or not to scale the axes to LstX and LstY.
A string determining the type of curve to draw, the valid values can be found in the list below.
- "Ba" : Basis
- "Bu" : Bundle
- "Car" : Cardinal
- "Cat" : CatmullRom
- "L" : Linear
- "MX" : MonotoneX
- "MY" : MonotoneY
- "N" : Natural
- "S" : Step
- "SA" : StepAfter
- "SB" : StepBefore