Searched defs:series (Results 1 - 25 of 29) sorted by relevance

12

/external/chromium-trace/catapult/third_party/flot/
H A Djquery.flot.stack.min.js7 (function($){var options={series:{stack:null}};function init(plot){function findMatchingSeries(s,allseries){var res=null;for(var i= (…) property
H A Djquery.flot.fillbetween.min.js7 (function($){var options={series:{fillBetween:null}};function init(plot){function findBottomSeries(s,allseries){var i;for(i=0;i<all (…) property
H A Djquery.flot.fillbetween.js6 The case: you've got two series that you want to fill the area between. In Flot
11 In order to name the other series, you need to give it an id, like this:
21 the series, it is interpreted as the index in the array instead (so fillBetween:
22 0 can also mean the first series).
24 Internally, the plugin modifies the datapoints in each series. For line series,
35 series: {
34 series: { property
H A Djquery.flot.stack.js13 Two or more series are stacked when their "stack" attribute is set to the same
17 series: {
21 You can also specify it for a single series, like this:
28 The stacking order is determined by the order of the data series in the array
29 (later series end up on top of the previous).
31 Internally, the plugin modifies the datapoints in each series, adding an
32 offset to the y value. For line series, extra data points are inserted through
40 series: { stack: null } // or number/string
39 series: { stack: null } // or number/string property
H A Djquery.flot.errorbars.js12 the points series to the axis name over which there will be error values in
18 series: {
57 Color and radius both default to the same ones of the points series if not
61 shadowSize and lineWidth are derived as well from the points series.
67 series: {
76 function processRawData(plot, series, data, datapoints){
77 if (!series.points.errorbars)
86 var errors = series.points.errorbars;
90 if (series.points.xerr.asymmetric) {
98 if (series
66 series: { property
[all...]
H A Djquery.flot.threshold.js8 series: {
15 It can also be applied to a single series, like this:
38 Internally, the plugin works by splitting the data into two series, above and
39 below the threshold. The extra series below the threshold will have its label
40 cleared and the special "originSeries" attribute set to the original series.
47 series: { threshold: null } // or { below: number, color: color spec}
108 // Insert newly-generated series right after original one (to prevent it from becoming top-most)
46 series: { threshold: null } // or { below: number, color: color spec} property
H A Djquery.flot.threshold.min.js7 (function($){var options={series:{threshold:null}};function init(plot){function thresholdData(plot,s,datapoints,below,color){var ps (…) property
H A Djquery.flot.errorbars.min.js7 (function($){var options={series:{points:{errorbars:null,xerr:{err:"x",show:null,asymmetric:null,upperCap:null,lowerCap:null,color:null,radius:null},yerr:{err:"y",show:null,asymmetric:null,upperCap:null,lowerCap:null,color:null,radius:null}}}};function processRawData(plot,series,data,datapoints){if(!series.points.errorbars)return;var format=[{x:true,number:true,required:true},{y:true,number:true,required:true}];var errors=series.points.errorbars;if(errors=="x"||errors=="xy"){if(series.points.xerr.asymmetric){format.push({x:true,number:true,required:true});format.push({x:true,number:true,required:true})}else format.push({x:true,number:true,required:true})}if(errors=="y"||errors=="xy"){if(series.points.yerr.asymmetric){format.push({y:true,number:true,required:true});format.push({y:true,number:true,required:true})}else format.push({y:true,number:true,required:true})}datapoints.format=format}function parseErrors(series,i){var points=series.datapoints.points;var exl=null,exu=null,eyl=null,eyu=null;var xerr=series.points.xerr,yerr=series property
[all...]
H A Djquery.flot.image.js28 series: {
36 They can be specified for a specific series:
44 can't use images with anything else in a specific data series.
57 series: {
68 $.plot.image.loadDataImages = function (series, options, callback) {
71 var defaultShow = options.series.images.show;
73 $.each(series, function (i, s) {
118 function drawSeries(plot, ctx, series) {
121 if (!series.images || !series
56 series: { property
[all...]
H A Djquery.flot.image.min.js7 (function($){var options={series:{images:{show:false,alpha:1,anchor:"corner"}}};$.plot.image={};$.plot.image.loadDataImages=function(series,options,callback){var urls=[],points=[];var defaultShow=options.series.images.show;$.each(series,function(i,s){if(!(defaultShow||s.images.show))return;if(s.data)s=s.data;$.each(s,function(i,p){if(typeof p[0]=="string"){urls.push(p[0]);points.push(p)}})});$.plot.image.load(urls,function(loadedImages){$.each(points,function(i,p){var url=p[0];if(loadedImages[url])p[0]=loadedImages[url]});callback()})};$.plot.image.load=function(urls,callback){var missing=urls.length,loaded={};if(missing==0)callback({});$.each(urls,function(i,url){var handler=function(){--missing;loaded[url]=this;if(missing==0)callback(loaded)};$("<img />").load(handler).error(handler).attr("src",url)})};function drawSeries(plot,ctx,series){var plotOffset=plot.getPlotOffset();if(!series.images||!series.images.show)return;var points=series.datapoints.points,ps=series.datapoints.pointsize;for(var i=0;i<points.length;i+=ps){var img=points[i],x1=points[i+1],y1=points[i+2],x2=points[i+3],y2=points[i+4],xaxis=series property
[all...]
H A Djquery.flot.pie.js6 The plugin assumes that each series has a single data value, and that each
18 series: {
86 if (options.series.pie.show) {
92 if (options.series.pie.label.show == "auto") {
94 options.series.pie.label.show = false;
96 options.series.pie.label.show = true;
102 if (options.series.pie.radius == "auto") {
103 if (options.series.pie.label.show) {
104 options.series.pie.radius = 3/4;
106 options.series
[all...]
H A Djquery.flot.pie.min.js7 (function($){var REDRAW_ATTEMPTS=10;var REDRAW_SHRINK=.95;function init(plot){var canvas=null,target=null,options=null,maxRadius=null,centerLeft=null,centerTop=null,processed=false,ctx=null;var highlights=[];plot.hooks.processOptions.push(function(plot,options){if(options.series.pie.show){options.grid.show=false;if(options.series.pie.label.show=="auto"){if(options.legend.show){options.series.pie.label.show=false}else{options.series.pie.label.show=true}}if(options.series.pie.radius=="auto"){if(options.series.pie.label.show){options.series.pie.radius=3/4}else{options.series.pie.radius=1}}if(options.series.pie.tilt>1){options.series
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/xy/
H A DPointLabeler.java21 public String getLabel(XYSeries series, int index); argument
H A DLineAndPointRenderer.java43 for (XYSeries series : seriesList) {
44 //synchronized(series) {
45 drawSeries(canvas, plotArea, series, getFormatter(series));
79 protected void drawSeries(Canvas canvas, RectF plotArea, XYSeries series, LineAndPointFormatter formatter) { argument
87 ArrayList<Pair<PointF, Integer>> points = new ArrayList<Pair<PointF, Integer>>(series.size());
88 for (int i = 0; i < series.size(); i++) {
89 Number y = series.getY(i);
90 Number x = series.getX(i);
149 canvas.drawText(pointLabeler.getLabel(series,
[all...]
H A DBarRenderer.java102 * Retrieves the BarFormatter instance that corresponds with the series passed in.
105 * @param series XYSeries to which the point being rendered belongs.
109 protected T getFormatter(int index, XYSeries series) { argument
110 return getFormatter(series);
128 for(XYSeries series : sl) {
131 // For each value in the series
132 for(int i = 0; i < series.size(); i++) {
134 if (series.getX(i) != null) {
137 Bar b = new Bar(series,i,plotArea);
238 //Log.d("BAR", b.series
302 public XYSeries series; field in class:BarRenderer.Bar
309 Bar(XYSeries series, int seriesIndex, RectF plotArea) argument
[all...]
/external/androidplot/AndroidPlot-Core/src/main/java/com/androidplot/ui/
H A DRenderBundle.java23 //private XYDataset series;
24 private Series series; field in class:RenderBundle
27 public RenderBundle(SeriesType series, SeriesFormatterType formatter) { argument
29 this.series = series;
33 return series;
36 public void setSeries(Series series) { argument
37 this.series = series;
H A DSeriesAndFormatterList.java37 public boolean contains(SeriesType series) { argument
38 return seriesList.contains(series);
53 public boolean add(SeriesType series, FormatterType formatter) { argument
54 if(series == null || formatter == null) {
55 throw new IllegalArgumentException("series and formatter must not be null.");
57 if(seriesList.contains(series)) {
60 seriesList.add(series);
65 public boolean remove(SeriesType series) { argument
66 int index = seriesList.indexOf(series);
76 public FormatterType getFormatter(SeriesType series) { argument
88 setFormatter(SeriesType series, FormatterType formatter) argument
[all...]
H A DSeriesRenderer.java46 public SeriesFormatterType getFormatter(SeriesType series) { argument
47 return (SeriesFormatterType) plot.getFormatter(series, getClass());
/external/androidplot/Examples/DemoApp/src/com/androidplot/demos/
H A DXYPlotWithBgImgActivity.java20 private SimpleXYSeries series; field in class:XYPlotWithBgImgActivity
54 series = (SimpleXYSeries) getSeries();
61 plot.addSeries(series, lpFormat);
H A DTouchZoomExampleActivity.java47 private SimpleXYSeries[] series = null; field in class:TouchZoomExampleActivity
58 minXY.x = series[0].getX(0).floatValue();
59 maxXY.x = series[3].getX(series[3].size() - 1).floatValue();
81 series = new SimpleXYSeries[4];
84 series[i] = new SimpleXYSeries("S" + i);
85 populateSeries(series[i], scale);
87 mySimpleXYPlot.addSeries(series[3],
90 mySimpleXYPlot.addSeries(series[2],
93 mySimpleXYPlot.addSeries(series[
107 populateSeries(SimpleXYSeries series, int max) argument
[all...]
H A DBarPlotExampleActivity.java278 // Remove all current series from each plot
289 // add a new series' to the xyplot:
324 for (XYSeries series : plot.getSeriesSet()) {
325 for (int i = 0; i < series.size(); i++) {
326 Number thisX = series.getX(i);
327 Number thisY = series.getY(i);
334 selection = new Pair<Integer, XYSeries>(i, series);
338 selection = new Pair<Integer, XYSeries>(i, series);
344 selection = new Pair<Integer, XYSeries>(i, series);
410 * @param series XYSerie
415 getFormatter(int index, XYSeries series) argument
[all...]
H A DDynamicXYPlotActivity.java184 public int getItemCount(int series) { argument
188 public Number getX(int series, int index) { argument
195 public Number getY(int series, int index) { argument
201 switch (series) {
/external/autotest/frontend/client/src/autotest/tko/
H A DMetricsPlotFrontend.java40 private RadioButton normalizeSeries = new RadioButton("normalize", "Specified series:");
122 String series = normalizeSeriesSelect.getSelectedValue();
123 normalizationType = NORMALIZE_SERIES_PREFIX + series;
174 String series = normalizeString.substring(NORMALIZE_SERIES_PREFIX.length());
176 if (normalizeSeriesSelect.getValue(i).equals(series)) {
230 for (Series series : seriesList) {
231 addSeriesSelects(series, sql);
249 for (Series series : seriesList) {
250 String drilldownQuery = getSeriesDrilldownQuery(series, xFilterString);
251 queries.put("__" + series
257 getSeriesDrilldownQuery(Series series, String xFilterString) argument
282 addSeriesSelects(Series series, StringBuilder sql) argument
[all...]
H A DSeriesSelector.java31 private ArrayList<Series> series = new ArrayList<Series>(); field in class:SeriesSelector
175 return Collections.unmodifiableList(series);
179 for (int i = 0; i < series.size(); i++) {
182 series.clear();
188 for (Series s : series) {
197 for (Series s : series) {
211 for (int index = 0; index < series.size(); index++) {
212 series.get(index).addToHistory(args, index);
232 thisSeries = series.get(0);
246 series
[all...]
/external/skia/src/core/
H A DSkColorFilter.cpp108 const GrFragmentProcessor* series[] = { innerFP, outerFP }; variable
109 return GrFragmentProcessor::RunInSeries(series, 2);

Completed in 433 milliseconds

12