stricter types
authorDan Vanderkam <danvdk@gmail.com>
Mon, 22 Jul 2013 20:59:34 +0000 (16:59 -0400)
committerDan Vanderkam <danvdk@gmail.com>
Mon, 22 Jul 2013 20:59:34 +0000 (16:59 -0400)
dygraph-canvas.js

index 5a02f2a..496326f 100644 (file)
  * The chart canvas has already been created by the Dygraph object. The
  * renderer simply gets a drawing context.
  *
- * @param {Dygraph} dygraph The chart to which this renderer belongs.
- * @param {HTMLCanvasElement} element The &lt;canvas&gt; DOM element on which to draw.
- * @param {CanvasRenderingContext2D} elementContext The drawing context.
- * @param {DygraphLayout} layout The chart's DygraphLayout object.
+ * @param {!Dygraph} dygraph The chart to which this renderer belongs.
+ * @param {!HTMLCanvasElement} element The &lt;canvas&gt; DOM element on which to draw.
+ * @param {!CanvasRenderingContext2D} elementContext The drawing context.
+ * @param {!DygraphLayout} layout The chart's DygraphLayout object.
  *
  * TODO(danvk): remove the elementContext property.
  */