Home
last modified time | relevance | path

Searched refs:yaxis (Results 1 – 15 of 15) sorted by relevance

/external/chromium-trace/catapult/third_party/flot/
Djquery.flot.image.js131 xaxis = series.xaxis, yaxis = series.yaxis,
165 y1 >= yaxis.max || y2 <= yaxis.min)
179 if (y1 < yaxis.min) {
180 sy2 += (sy1 - sy2) * (yaxis.min - y1) / (y2 - y1);
181 y1 = yaxis.min;
184 if (y2 > yaxis.max) {
185 sy1 += (sy1 - sy2) * (yaxis.max - y2) / (y2 - y1);
186 y2 = yaxis.max;
191 y1 = yaxis.p2c(y1);
192 y2 = yaxis.p2c(y2);
Djquery.flot.image.min.js7yaxis=series.yaxis,tmp;if(!img||img.width<=0||img.height<=0)continue;if(x1>x2){tmp=x2;x2=x1;x1=tmp…
Djquery.flot.js553 yaxis: { property
751 if (options.yaxis.color == null)
752 options.yaxis.color = $.color.parse(options.grid.color).scale('a', 0.22).toString();
756 if (options.yaxis.tickColor == null) // grid.tickColor for back-compatibility
757 options.yaxis.tickColor = options.grid.tickColor || options.yaxis.color;
811 axisOptions = $.extend(true, {}, options.yaxis, axisOptions);
828 if (options.yaxis.noTicks && options.yaxis.ticks == null)
829 options.yaxis.ticks = options.yaxis.noTicks;
842 options.yaxes[1] = $.extend(true, {}, options.yaxis, options.y2axis);
985 options: $.extend(true, {}, axes == xaxes ? options.xaxis : options.yaxis)
[all …]
Djquery.flot.min.js7yaxis:{autoscaleMargin:.02,position:"left"},xaxes:[],yaxes:[],series:{points:{show:false,radius:3,… property
8yaxis);ctx.lineWidth=sw/2;plotLine(series.datapoints,Math.sin(angle)*(lw/2+sw/4),Math.cos(angle)*(…
Djquery.flot.categories.js51 yaxis: { property
62 yCategories = series.yaxis.options.mode == "categories";
Djquery.flot.categories.min.js7yaxis:{categories:null}};function processRawData(plot,series,data,datapoints){var xCategories=seri… property
Djquery.flot.selection.js180 if (r.xaxis && r.yaxis)
181 …holder().trigger("selected", [ { x1: r.xaxis.from, y1: r.yaxis.from, x2: r.xaxis.to, y2: r.yaxis.t…
Djquery.flot.selection.min.js7 …ted",[r]);if(r.xaxis&&r.yaxis)plot.getPlaceholder().trigger("selected",[{x1:r.xaxis.from,y1:r.yaxi…
DAPI.md105 yaxis: number
136 The "xaxis" and "yaxis" options specify which axis to use. The axes
137 are numbered from 1 (default), so { yaxis: 2} means that the series
244 xaxis, yaxis: {
368 yaxis: {
493 format of the data series, e.g. { data: [...], yaxis: 2 } specifies
496 To actually configure that axis, you can't use the xaxis/yaxis options
514 The arrays get their default values from the xaxis/yaxis settings, so
516 yaxis: { min: 0 } instead of adding a min parameter to all the axes.
519 either accept an xaxis/yaxis parameter to specify which axis number to
[all …]
DREADME.md79 $.plot($("#placeholder"), [ [[0, 0], [1, 1]] ], { yaxis: { max: 1 } });
Djquery.flot.errorbars.js166 ax = [s.xaxis, s.yaxis],
Djquery.flot.errorbars.min.js7 …s){var points=s.datapoints.points,ps=s.datapoints.pointsize,ax=[s.xaxis,s.yaxis],radius=s.points.r…
DNEWS.md431 yaxis: { ... }, y2axis: { ... }
444 Note that if you're just using one axis, continue to use the xaxis/yaxis
463 { xaxis: { tickColor: "#000"}, yaxis: { tickColor: "#000"} }
1005 Moved labelMargin option to grid from x/yaxis.
/external/chromium-trace/catapult/telemetry/third_party/flot/
Djquery.flot.min.js28yaxis.color==null&&(a.yaxis.color=e.color.parse(a.grid.color).scale("a",.22).toString()),a.xaxis.t… property
/external/opencv3/doc/pattern_tools/
Dsvgfig.py3403yaxis = YAxis(self.ymin, self.ymax, atx, self.yticks, self.yminiticks, self.ylabels, self.ylogbase…
3404 return SVG("g", *(xaxis.sub + yaxis.sub))