Lines Matching defs:first
67 xaxis, the plugin picks the first one it sees.
84 first: { x: -1, y: -1}, second: { x: -1, y: -1},
123 setSelectionPos(selection.first, e);
164 var r = {}, c1 = selection.first, c2 = selection.second;
196 pos.x = pos == selection.first ? 0 : plot.width();
199 pos.y = pos == selection.first ? 0 : plot.height();
263 selection.first.x = 0;
269 selection.first.x = range.axis.p2c(range.from);
274 selection.first.y = 0;
280 selection.first.y = range.axis.p2c(range.from);
292 return Math.abs(selection.second.x - selection.first.x) >= minSize &&
293 Math.abs(selection.second.y - selection.first.y) >= minSize;
325 var x = Math.min(selection.first.x, selection.second.x) + 0.5,
326 y = Math.min(selection.first.y, selection.second.y) + 0.5,
327 w = Math.abs(selection.second.x - selection.first.x) - 1,
328 h = Math.abs(selection.second.y - selection.first.y) - 1;