Lines Matching +full:- +full:eq

3  * jquery.graphTable2-0.1.js
19 * - jquery.js (http://jquery.com) -- tested with 1.4.2
20 * - jquery.jqplot (https://bitbucket.org/cleonello/jqplot/wiki/Home)
26 * - both arguments are optional; defaults will work in most cases
29 * - for details on tablePlot options and defaults, see below.
30 * - for details on jqlot options and defaults, see
35 * - this isn't going to work well with tables that use rowspan or colspan
36 * - make sure to use the transform args to transform your cell contents into
37 * something flot can understand -- especially important if your cells
48 * options for reading the table -- defaults will work in most cases except
71 … dataTransform: null, // function to run on cell contents before passing to flot; string -> string
72 … labelTransform: null, // function to run on cell contents before passing to flot; string -> string
73 … xaxisTransform: null // function to run on cell contents before passing to flot; string -> string
85 $('tr',$(this)).eq(args.labels).find('th,td').length - 1 :
86 $('tr',$(this)).length - 1;
92 $('tr',$(this)).eq(args.firstSeries).find('th,td').length - 1:
93 $('tr',$(this)).length - 1;
127 var $xaxisRow = $rows.eq(args.xaxis);
131 dataIndex = i-args.firstSeries;
134 $dataRow = $('tr',$table).eq(i);
137 var label = $('th,td',$dataRow).eq(args.labels).text();
142 var x = $('th,td',$xaxisRow).eq(j).text();
143 var y = $('th,td',$dataRow).eq(j).text();
150 line2[i][j-1] = parseInt(y, 10);
164 var $labelRow = $rows.eq(args.labels);
167 dataIndex = j-args.firstSeries;
170 var label = $labelRow.find('th,td').eq(j).text();
174 $cell = $rows.eq(i).find('th,td').eq(j);
176 var x = $rows.eq(i).find('th,td').eq(args.xaxis).text();
183 line2[j][i-1] = parseInt(y, 10);
185 if (i > 0) ticks[i-1]=x;
190 line2[j][i-1] = parseInt(y, 10);
203 …d="'+divid+'" style="width:'+args.width+'px; height:'+args.height+'px;" class="plot-graph"></div>';
224 … {xaxis: {renderer: jQuery.jqplot.CategoryAxisRenderer, tickOptions: {angle: -30}, ticks: ticks}}};
233 line3[i-1] = line2[i];