Constructor # new module:LinearGradient(fromPosition, toPosition, colorStops) Linear-gradient constructor Parameters: Name Type Description fromPosition PositionDefinition Starting position of the gradient toPosition PositionDefinition Ending position of the gradient colorStops Object Set of colors to go through (key is position [from 0 to 1], value is the color) Source: modules/linear-gradient/linear-gradient.js, line 12 Example new LinearGradient(from, to, { 0: "red", 1: "green" }); Methods # toString(ctx) → {CanvasGradient} Return a drawing context compatible gradient Parameters: Name Type Description ctx CanvasRenderingContext2D Drawing context Source: modules/linear-gradient/linear-gradient.js, line 31 Returns: Type CanvasGradient