jquery.flot.stack.min.js 2.6 KB

123456789101112131415161718192021222324252627282930313233343536
  1. /* Flot plugin for stacking data sets rather than overlyaing them.
  2. Copyright (c) 2007-2013 IOLA and Ole Laursen.
  3. Licensed under the MIT license.
  4. The plugin assumes the data is sorted on x (or y if stacking horizontally).
  5. For line charts, it is assumed that if a line has an undefined gap (from a
  6. null point), then the line above it should have the same gap - insert zeros
  7. instead of "null" if you want another behaviour. This also holds for the start
  8. and end of the chart. Note that stacking a mix of positive and negative values
  9. in most instances doesn't make sense (so it looks weird).
  10. Two or more series are stacked when their "stack" attribute is set to the same
  11. key (which can be any number or string or just "true"). To specify the default
  12. stack, you can set the stack option like this:
  13. series: {
  14. stack: null/false, true, or a key (number/string)
  15. }
  16. You can also specify it for a single series, like this:
  17. $.plot( $("#placeholder"), [{
  18. data: [ ... ],
  19. stack: true
  20. }])
  21. The stacking order is determined by the order of the data series in the array
  22. (later series end up on top of the previous).
  23. Internally, the plugin modifies the datapoints in each series, adding an
  24. offset to the y value. For line series, extra data points are inserted through
  25. interpolation. If there's a second y value, it's also adjusted (e.g for bar
  26. charts or filled areas).
  27. */(function(e){function n(e){function t(e,t){var n=null;for(var r=0;r<t.length;++r){if(e==t[r])break;t[r].stack==e.stack&&(n=t[r])}return n}function n(e,n,r){if(n.stack==null||n.stack===!1)return;var i=t(n,e.getData());if(!i)return;var s=r.pointsize,o=r.points,u=i.datapoints.pointsize,a=i.datapoints.points,f=[],l,c,h,p,d,v,m=n.lines.show,g=n.bars.horizontal,y=s>2&&(g?r.format[2].x:r.format[2].y),b=m&&n.lines.steps,w=!0,E=g?1:0,S=g?0:1,x=0,T=0,N,C;for(;;){if(x>=o.length)break;N=f.length;if(o[x]==null){for(C=0;C<s;++C)f.push(o[x+C]);x+=s}else if(T>=a.length){if(!m)for(C=0;C<s;++C)f.push(o[x+C]);x+=s}else if(a[T]==null){for(C=0;C<s;++C)f.push(null);w=!0,T+=u}else{l=o[x+E],c=o[x+S],p=a[T+E],d=a[T+S],v=0;if(l==p){for(C=0;C<s;++C)f.push(o[x+C]);f[N+S]+=d,v=d,x+=s,T+=u}else if(l>p){if(m&&x>0&&o[x-s]!=null){h=c+(o[x-s+S]-c)*(p-l)/(o[x-s+E]-l),f.push(p),f.push(h+d);for(C=2;C<s;++C)f.push(o[x+C]);v=d}T+=u}else{if(w&&m){x+=s;continue}for(C=0;C<s;++C)f.push(o[x+C]);m&&T>0&&a[T-u]!=null&&(v=d+(a[T-u+S]-d)*(l-p)/(a[T-u+E]-p)),f[N+S]+=v,x+=s}w=!1,N!=f.length&&y&&(f[N+2]+=v)}if(b&&N!=f.length&&N>0&&f[N]!=null&&f[N]!=f[N-s]&&f[N+1]!=f[N-s+1]){for(C=0;C<s;++C)f[N+s+C]=f[N+C];f[N+1]=f[N-s+1]}}r.points=f}e.hooks.processDatapoints.push(n)}var t={series:{stack:null}};e.plot.plugins.push({init:n,options:t,name:"stack",version:"1.2"})})(jQuery);