Advertisement
cherurg

Untitled

Jul 28th, 2015
215
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. var plotter = new Plotter('plot');
  2.  
  3. var options = {
  4.   breaks: [0]
  5. };
  6.  
  7. plotter.addFunc(function (x) {
  8.   return 1 / x;
  9. }, options);
  10.  
  11. var setTop = setTimeout(function () {
  12.   plotter.plot.y.domain([plotter.plot.pure.bottom, 10]);
  13.   plotter.draw();
  14. }, 2000);
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement