step.html 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152
  1. <html>
  2. <head>
  3. <title>Step Chart</title>
  4. <script type="text/javascript" src="../protovis-d3.1.js"></script>
  5. </head>
  6. <body>
  7. <script type="text/javascript+protovis">
  8. var data = pv.range(0, 10, .1).map(function(x) {
  9. return {x: x, y: Math.sin(x) + Math.random() * .5 + 2};
  10. }),
  11. w = 400,
  12. h = 200,
  13. x = pv.Scale.linear(data, function(d) d.x).range(0, w),
  14. y = pv.Scale.linear(0, 4).range(0, h);
  15. var vis = new pv.Panel()
  16. .width(w)
  17. .height(h)
  18. .bottom(20)
  19. .left(20)
  20. .right(10)
  21. .top(5);
  22. vis.add(pv.Rule)
  23. .data(y.ticks())
  24. .visible(function() !(this.index % 2))
  25. .bottom(function(d) Math.round(y(d)) - .5)
  26. .strokeStyle("#eee")
  27. .anchor("left").add(pv.Label)
  28. .text(function(d) d.toFixed(1));
  29. vis.add(pv.Rule)
  30. .data(x.ticks())
  31. .visible(function(d) d > 0)
  32. .left(function(d) Math.round(x(d)) - .5)
  33. .strokeStyle("#eee")
  34. .anchor("bottom").add(pv.Label)
  35. .text(function(d) d.toFixed());
  36. vis.add(pv.Line)
  37. .data(data)
  38. .left(function(d) x(d.x))
  39. .bottom(function(d) y(d.y))
  40. .lineWidth(3)
  41. .interpolate("step-after");
  42. vis.render();
  43. </script>
  44. </body>
  45. </html>