Home | History | Annotate | Download | only in flot

Lines Matching refs:yrange

1967                         yrange = extractRange(m, "y");
1974 if (yrange.from == null)
1975 yrange.from = yrange.axis.min;
1976 if (yrange.to == null)
1977 yrange.to = yrange.axis.max;
1981 yrange.to < yrange.axis.min || yrange.from > yrange.axis.max)
1986 yrange.from = Math.max(yrange.from, yrange.axis.min);
1987 yrange.to = Math.min(yrange.to, yrange.axis.max);
1990 yequal = yrange.from === yrange.to;
1999 yrange.from = Math.floor(yrange.axis.p2c(yrange.from));
2000 yrange.to = Math.floor(yrange.axis.p2c(yrange.to));
2009 ctx.moveTo(xrange.to + subPixel, yrange.from);
2010 ctx.lineTo(xrange.to + subPixel, yrange.to);
2012 ctx.moveTo(xrange.from, yrange.to + subPixel);
2013 ctx.lineTo(xrange.to, yrange.to + subPixel);
2018 ctx.fillRect(xrange.from, yrange.to,
2020 yrange.from - yrange.to);