Skip to content

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])

Parameters

LstX

A list of the x-coordinates to be plotted in pairs with the y-coordinates from LstY.

LstY

A list of the y-coordinates to be plotted in pairs with the x-coordinates from LstX.

Colour

The colour of the curve, supports HTML Color Names or Color Values. e.g. "lightgrey" or "#FF00FF".

Width

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.

ScaleAxes

A boolean determining whether or not to scale the axes to LstX and LstY.

Curve

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

Legend

Remarks

Example

Clone this wiki locally