• Home
  • Raw
  • Download

Lines Matching refs:series

514         var series = [],
559 series: { property
653 plot.getData = function () { return series; };
681 series = [];
857 $.extend(true, options.series.lines, options.lines);
859 $.extend(true, options.series.points, options.points);
861 $.extend(true, options.series.bars, options.bars);
863 options.series.shadowSize = options.shadowSize;
865 options.series.highlightColor = options.highlightColor;
882 series = parseData(d);
890 var s = $.extend(true, {}, options.series);
993 var neededColors = series.length, maxIndex = -1, i;
998 for (i = 0; i < series.length; ++i) {
999 var sc = series[i].color;
1047 for (i = 0; i < series.length; ++i) {
1048 s = series[i];
1105 for (i = 0; i < series.length; ++i) {
1106 s = series[i];
1113 for (i = 0; i < series.length; ++i) {
1114 s = series[i];
1222 for (i = 0; i < series.length; ++i) {
1223 s = series[i];
1229 for (i = 0; i < series.length; ++i) {
1230 s = series[i];
1537 for (i = 0; i < series.length; ++i)
1538 … minMargin = Math.max(minMargin, 2 * (series[i].points.radius + series[i].points.lineWidth/2));
1881 for (var i = 0; i < series.length; ++i) {
1882 executeHooks(hooks.drawSeries, [ctx, series[i]]);
1883 drawSeries(series[i]);
2231 function drawSeries(series) { argument
2232 if (series.lines.show)
2233 drawSeriesLines(series);
2234 if (series.bars.show)
2235 drawSeriesBars(series);
2236 if (series.points.show)
2237 drawSeriesPoints(series);
2240 function drawSeriesLines(series) { argument
2467 var lw = series.lines.lineWidth,
2468 sw = series.shadowSize;
2476 …plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/2), Math.cos(angle) * (lw/2 + sw/2), seri…
2478 …plotLine(series.datapoints, Math.sin(angle) * (lw/2 + sw/4), Math.cos(angle) * (lw/2 + sw/4), seri…
2482 ctx.strokeStyle = series.color;
2483 var fillStyle = getFillStyle(series.lines, series.color, 0, plotHeight);
2486 plotLineArea(series.datapoints, series.xaxis, series.yaxis);
2490 plotLine(series.datapoints, 0, 0, series.xaxis, series.yaxis);
2494 function drawSeriesPoints(series) { argument
2523 var lw = series.points.lineWidth,
2524 sw = series.shadowSize,
2525 radius = series.points.radius,
2526 symbol = series.points.symbol;
2541 plotPoints(series.datapoints, radius, null, w + w/2, true,
2542 series.xaxis, series.yaxis, symbol);
2545 plotPoints(series.datapoints, radius, null, w/2, true,
2546 series.xaxis, series.yaxis, symbol);
2550 ctx.strokeStyle = series.color;
2551 plotPoints(series.datapoints, radius,
2552 getFillStyle(series.points, series.color), 0, false,
2553 series.xaxis, series.yaxis, symbol);
2662 function drawSeriesBars(series) { argument
2669 …2], barLeft, barRight, fillStyleCallback, axisx, axisy, ctx, series.bars.horizontal, series.bars.l…
2677 ctx.lineWidth = series.bars.lineWidth;
2678 ctx.strokeStyle = series.color;
2682 switch (series.bars.align) {
2687 barLeft = -series.bars.barWidth;
2690 barLeft = -series.bars.barWidth / 2;
2693 …var fillStyleCallback = series.bars.fill ? function (bottom, top) { return getFillStyle(series.bar…
2694 …plotBars(series.datapoints, barLeft, barLeft + series.bars.barWidth, fillStyleCallback, series.xax…
2729 for (var i = 0; i < series.length; ++i) {
2730 s = series[i];
2834 for (i = series.length - 1; i >= 0; --i) {
2835 if (!seriesFilter(series[i]))
2838 var s = series[i],
2905 if (series[i].bars.horizontal ?
2918 ps = series[i].datapoints.pointsize;
2920 return { datapoint: series[i].datapoints.points.slice(j * ps, (j + 1) * ps),
2922 series: series[i],
2961 …item.pageX = parseInt(item.series.xaxis.p2c(item.datapoint[0]) + offset.left + plotOffset.left, 10…
2962 … item.pageY = parseInt(item.series.yaxis.p2c(item.datapoint[1]) + offset.top + plotOffset.top, 10);
2970 !(item && h.series == item.series &&
2973 unhighlight(h.series, h.point);
2977 highlight(item.series, item.datapoint, eventname);
3006 if (hi.series.bars.show)
3007 drawBarHighlight(hi.series, hi.point);
3009 drawPointHighlight(hi.series, hi.point);
3018 s = series[s];
3027 highlights.push({ series: s, point: point, auto: auto }); property
3043 s = series[s];
3061 if (h.series == s && h.point[0] == p[0]
3068 function drawPointHighlight(series, point) { argument
3070 axisx = series.xaxis, axisy = series.yaxis,
3071 …highlightColor = (typeof series.highlightColor === "string") ? series.highlightColor : $.color.par…
3076 var pointRadius = series.points.radius + series.points.lineWidth / 2;
3084 if (series.points.symbol == "circle")
3087 series.points.symbol(octx, x, y, radius, false);
3092 function drawBarHighlight(series, point) { argument
3093 …var highlightColor = (typeof series.highlightColor === "string") ? series.highlightColor : $.color…
3097 switch (series.bars.align) {
3102 barLeft = -series.bars.barWidth;
3105 barLeft = -series.bars.barWidth / 2;
3108 octx.lineWidth = series.bars.lineWidth;
3111 drawBar(point[0], point[1], point[2] || 0, barLeft, barLeft + series.bars.barWidth,
3112 …function () { return fillStyle; }, series.xaxis, series.yaxis, octx, series.bars.horizontal, serie…