H A D | theme-raphael.js | 25 Raphael.fn.line = function(x1, y1, x2, y2) { argument 26 assert(_.all([x1,x2,y1,y2], _.isFinite), 'x1,x2,y1,y2 must be numeric'); 27 return this.path('M{0},{1} L{2},{3}', x1, y1, x2, y2); 109 drawLine: function(x1, y1, x2, y2, linetype, arrowhead) { argument 110 var line = this.paper_.line(x1, y1, x2, y2).attr(LINE); 176 drawLine: function(x1, y1, x2, y2, linetype, arrowhead) { argument 177 var line = this.paper_.path(handLine(x1, y1, x2, y2)).attr(LINE);
|