rubyvis 0.1.1 → 0.1.2

Sign up to get free protection for your applications and to get access to all the features.
Files changed (461) hide show
  1. data.tar.gz.sig +0 -0
  2. data/History.txt +8 -1
  3. data/Manifest.txt +100 -416
  4. data/README.txt +5 -2
  5. data/examples/barley/barley.rb +79 -0
  6. data/examples/crimea/crimea.rb +37 -0
  7. data/examples/crimea/crimea_line.rb +47 -0
  8. data/examples/second.rb +2 -2
  9. data/examples/third.rb +16 -0
  10. data/lib/rubyvis.rb +2 -1
  11. data/lib/rubyvis/color/color.rb +170 -169
  12. data/lib/rubyvis/color/colors.rb +4 -4
  13. data/lib/rubyvis/color/ramp.rb +1 -0
  14. data/lib/rubyvis/format.rb +2 -2
  15. data/lib/rubyvis/format/date.rb +9 -2
  16. data/lib/rubyvis/format/number.rb +3 -3
  17. data/lib/rubyvis/internals.rb +13 -13
  18. data/lib/rubyvis/javascript_behaviour.rb +3 -3
  19. data/lib/rubyvis/label.rb +1 -0
  20. data/lib/rubyvis/mark.rb +178 -169
  21. data/lib/rubyvis/mark/anchor.rb +4 -4
  22. data/lib/rubyvis/mark/area.rb +93 -5
  23. data/lib/rubyvis/mark/bar.rb +1 -1
  24. data/lib/rubyvis/mark/label.rb +2 -2
  25. data/lib/rubyvis/mark/line.rb +11 -5
  26. data/lib/rubyvis/mark/panel.rb +13 -11
  27. data/lib/rubyvis/mark/rule.rb +2 -2
  28. data/lib/rubyvis/property.rb +3 -2
  29. data/lib/rubyvis/scale.rb +4 -4
  30. data/lib/rubyvis/scale/linear.rb +2 -2
  31. data/lib/rubyvis/scale/ordinal.rb +41 -41
  32. data/lib/rubyvis/scale/quantitative.rb +212 -200
  33. data/lib/rubyvis/scene/svg_bar.rb +21 -21
  34. data/lib/rubyvis/scene/svg_label.rb +34 -34
  35. data/lib/rubyvis/scene/svg_line.rb +185 -0
  36. data/lib/rubyvis/scene/svg_panel.rb +36 -30
  37. data/lib/rubyvis/scene/svg_rule.rb +18 -19
  38. data/lib/rubyvis/scene/svg_scene.rb +33 -30
  39. data/lib/rubyvis/sceneelement.rb +5 -1
  40. data/lib/rubyvis/transform.rb +2 -2
  41. data/spec/mark_spec.rb +6 -6
  42. data/spec/scale_linear_datetime_spec.rb +52 -0
  43. data/spec/scale_linear_spec.rb +0 -10
  44. data/vendor/{protovis-r3.3.js → protovis/protovis-r3.3.js} +0 -0
  45. data/vendor/{src → protovis/src}/behavior/Behavior.js +0 -0
  46. data/vendor/{src → protovis/src}/behavior/Drag.js +0 -0
  47. data/vendor/{src → protovis/src}/behavior/Pan.js +0 -0
  48. data/vendor/{src → protovis/src}/behavior/Point.js +0 -0
  49. data/vendor/{src → protovis/src}/behavior/Resize.js +0 -0
  50. data/vendor/{src → protovis/src}/behavior/Select.js +0 -0
  51. data/vendor/{src → protovis/src}/behavior/Zoom.js +0 -0
  52. data/vendor/{src → protovis/src}/color/Color.js +0 -0
  53. data/vendor/{src → protovis/src}/color/Colors.js +0 -0
  54. data/vendor/{src → protovis/src}/color/Ramp.js +0 -0
  55. data/vendor/{src → protovis/src}/data/Arrays.js +0 -0
  56. data/vendor/{src → protovis/src}/data/Dom.js +0 -0
  57. data/vendor/{src → protovis/src}/data/Flatten.js +0 -0
  58. data/vendor/{src → protovis/src}/data/Histogram.js +0 -0
  59. data/vendor/{src → protovis/src}/data/LinearScale.js +0 -0
  60. data/vendor/{src → protovis/src}/data/LogScale.js +0 -0
  61. data/vendor/{src → protovis/src}/data/Nest.js +0 -0
  62. data/vendor/{src → protovis/src}/data/Numbers.js +0 -0
  63. data/vendor/{src → protovis/src}/data/Objects.js +0 -0
  64. data/vendor/{src → protovis/src}/data/OrdinalScale.js +0 -0
  65. data/vendor/{src → protovis/src}/data/QuantileScale.js +0 -0
  66. data/vendor/{src → protovis/src}/data/QuantitativeScale.js +0 -0
  67. data/vendor/{src → protovis/src}/data/RootScale.js +0 -0
  68. data/vendor/{src → protovis/src}/data/Scale.js +0 -0
  69. data/vendor/{src → protovis/src}/data/Transform.js +0 -0
  70. data/vendor/{src → protovis/src}/data/Tree.js +0 -0
  71. data/vendor/{src → protovis/src}/data/Vector.js +0 -0
  72. data/vendor/{src → protovis/src}/geo/Geo.js +0 -0
  73. data/vendor/{src → protovis/src}/geo/GeoScale.js +0 -0
  74. data/vendor/{src → protovis/src}/geo/LatLng.js +0 -0
  75. data/vendor/{src → protovis/src}/geo/Projection.js +0 -0
  76. data/vendor/{src → protovis/src}/geo/Projections.js +0 -0
  77. data/vendor/{src → protovis/src}/lang/Array.js +0 -0
  78. data/vendor/{src → protovis/src}/lang/init.js +0 -0
  79. data/vendor/{src → protovis/src}/layout/Arc.js +0 -0
  80. data/vendor/{src → protovis/src}/layout/Bullet.js +0 -0
  81. data/vendor/{src → protovis/src}/layout/Cluster.js +0 -0
  82. data/vendor/{src → protovis/src}/layout/Force.js +0 -0
  83. data/vendor/{src → protovis/src}/layout/Grid.js +0 -0
  84. data/vendor/{src → protovis/src}/layout/Hierarchy.js +0 -0
  85. data/vendor/{src → protovis/src}/layout/Horizon.js +0 -0
  86. data/vendor/{src → protovis/src}/layout/Indent.js +0 -0
  87. data/vendor/{src → protovis/src}/layout/Layout.js +0 -0
  88. data/vendor/{src → protovis/src}/layout/Matrix.js +0 -0
  89. data/vendor/{src → protovis/src}/layout/Network.js +0 -0
  90. data/vendor/{src → protovis/src}/layout/Pack.js +0 -0
  91. data/vendor/{src → protovis/src}/layout/Partition.js +0 -0
  92. data/vendor/{src → protovis/src}/layout/Rollup.js +0 -0
  93. data/vendor/{src → protovis/src}/layout/Stack.js +0 -0
  94. data/vendor/{src → protovis/src}/layout/Tree.js +0 -0
  95. data/vendor/{src → protovis/src}/layout/Treemap.js +0 -0
  96. data/vendor/{src → protovis/src}/mark/Anchor.js +0 -0
  97. data/vendor/{src → protovis/src}/mark/Area.js +0 -0
  98. data/vendor/{src → protovis/src}/mark/Bar.js +0 -0
  99. data/vendor/{src → protovis/src}/mark/Dot.js +0 -0
  100. data/vendor/{src → protovis/src}/mark/Ease.js +0 -0
  101. data/vendor/{src → protovis/src}/mark/Image.js +0 -0
  102. data/vendor/{src → protovis/src}/mark/Label.js +0 -0
  103. data/vendor/{src → protovis/src}/mark/Line.js +0 -0
  104. data/vendor/{src → protovis/src}/mark/Mark.js +0 -0
  105. data/vendor/{src → protovis/src}/mark/Panel.js +0 -0
  106. data/vendor/{src → protovis/src}/mark/Rule.js +0 -0
  107. data/vendor/{src → protovis/src}/mark/Transient.js +0 -0
  108. data/vendor/{src → protovis/src}/mark/Transition.js +0 -0
  109. data/vendor/{src → protovis/src}/mark/Wedge.js +0 -0
  110. data/vendor/{src → protovis/src}/physics/BoundConstraint.js +0 -0
  111. data/vendor/{src → protovis/src}/physics/ChargeForce.js +0 -0
  112. data/vendor/{src → protovis/src}/physics/CollisionConstraint.js +0 -0
  113. data/vendor/{src → protovis/src}/physics/Constraint.js +0 -0
  114. data/vendor/{src → protovis/src}/physics/DragForce.js +0 -0
  115. data/vendor/{src → protovis/src}/physics/Force.js +0 -0
  116. data/vendor/{src → protovis/src}/physics/Particle.js +0 -0
  117. data/vendor/{src → protovis/src}/physics/PositionConstraint.js +0 -0
  118. data/vendor/{src → protovis/src}/physics/Quadtree.js +0 -0
  119. data/vendor/{src → protovis/src}/physics/Simulation.js +0 -0
  120. data/vendor/{src → protovis/src}/physics/SpringForce.js +0 -0
  121. data/vendor/{src → protovis/src}/pv-internals.js +0 -0
  122. data/vendor/{src → protovis/src}/pv.js +0 -0
  123. data/vendor/{src → protovis/src}/scene/SvgArea.js +0 -0
  124. data/vendor/{src → protovis/src}/scene/SvgBar.js +0 -0
  125. data/vendor/{src → protovis/src}/scene/SvgCurve.js +0 -0
  126. data/vendor/{src → protovis/src}/scene/SvgDot.js +0 -0
  127. data/vendor/{src → protovis/src}/scene/SvgImage.js +0 -0
  128. data/vendor/{src → protovis/src}/scene/SvgLabel.js +0 -0
  129. data/vendor/{src → protovis/src}/scene/SvgLine.js +0 -0
  130. data/vendor/{src → protovis/src}/scene/SvgPanel.js +0 -0
  131. data/vendor/{src → protovis/src}/scene/SvgRule.js +0 -0
  132. data/vendor/{src → protovis/src}/scene/SvgScene.js +0 -0
  133. data/vendor/{src → protovis/src}/scene/SvgWedge.js +0 -0
  134. data/vendor/{src → protovis/src}/text/DateFormat.js +0 -0
  135. data/vendor/{src → protovis/src}/text/Format.js +0 -0
  136. data/vendor/{src → protovis/src}/text/NumberFormat.js +0 -0
  137. data/vendor/{src → protovis/src}/text/TimeFormat.js +0 -0
  138. metadata +132 -426
  139. metadata.gz.sig +2 -0
  140. data/examples/crimea-line.rb +0 -64
  141. data/vendor/FUTURE +0 -62
  142. data/vendor/Makefile +0 -138
  143. data/vendor/TODO +0 -22
  144. data/vendor/examples/antibiotics/antibiotics-scatter.html +0 -113
  145. data/vendor/examples/antibiotics/antibiotics.html +0 -140
  146. data/vendor/examples/antibiotics/antibiotics.js +0 -20
  147. data/vendor/examples/barley/barley.html +0 -102
  148. data/vendor/examples/barley/barley.js +0 -122
  149. data/vendor/examples/cars/cars.html +0 -90
  150. data/vendor/examples/cars/cars.js +0 -408
  151. data/vendor/examples/clock/clock.html +0 -91
  152. data/vendor/examples/crimea/crimea-grouped-bar.html +0 -65
  153. data/vendor/examples/crimea/crimea-line.html +0 -61
  154. data/vendor/examples/crimea/crimea-stacked-area.html +0 -61
  155. data/vendor/examples/crimea/crimea-stacked-bar.html +0 -60
  156. data/vendor/examples/crimea/crimea.html +0 -100
  157. data/vendor/examples/crimea/crimea.js +0 -33
  158. data/vendor/examples/downloadify/LICENSE.txt +0 -22
  159. data/vendor/examples/downloadify/download.png +0 -0
  160. data/vendor/examples/downloadify/downloadify.html +0 -57
  161. data/vendor/examples/downloadify/downloadify.min.js +0 -3
  162. data/vendor/examples/downloadify/downloadify.swf +0 -0
  163. data/vendor/examples/downloadify/swfobject.js +0 -4
  164. data/vendor/examples/ex.css +0 -17
  165. data/vendor/examples/eyes/eyes.html +0 -53
  166. data/vendor/examples/eyes/matrix.html +0 -44
  167. data/vendor/examples/flowers/flowers.html +0 -109
  168. data/vendor/examples/flowers/flowers.js +0 -154
  169. data/vendor/examples/group-stack/group-stack.html +0 -79
  170. data/vendor/examples/group-stack/headcount.js +0 -23
  171. data/vendor/examples/hotel/hotel.html +0 -76
  172. data/vendor/examples/hotel/hotel.js +0 -245
  173. data/vendor/examples/jobs/jobs.html +0 -71
  174. data/vendor/examples/jobs/jobs.js +0 -1024
  175. data/vendor/examples/jquery-1.4.2.min.js +0 -154
  176. data/vendor/examples/nba/nba.html +0 -83
  177. data/vendor/examples/nba/nba.js +0 -53
  178. data/vendor/examples/nba/nba2.html +0 -82
  179. data/vendor/examples/sankey/gdp2009.js +0 -184
  180. data/vendor/examples/sankey/sankey.html +0 -77
  181. data/vendor/examples/slider/cell.html +0 -112
  182. data/vendor/examples/slider/cell.js +0 -31
  183. data/vendor/examples/slider/horizon.html +0 -85
  184. data/vendor/examples/slider/jquery-ui-1.8rc3.custom.min.js +0 -71
  185. data/vendor/examples/slider/slider.html +0 -50
  186. data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
  187. data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
  188. data/vendor/examples/slider/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
  189. data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
  190. data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
  191. data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
  192. data/vendor/examples/slider/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
  193. data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
  194. data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
  195. data/vendor/examples/slider/ui-lightness/images/ui-icons_222222_256x240.png +0 -2
  196. data/vendor/examples/slider/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -2
  197. data/vendor/examples/slider/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -2
  198. data/vendor/examples/slider/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -2
  199. data/vendor/examples/slider/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -2
  200. data/vendor/examples/slider/ui-lightness/jquery-ui-1.8rc3.custom.css +0 -302
  201. data/vendor/examples/tipsy/jquery.tipsy.js +0 -198
  202. data/vendor/examples/tipsy/tipsy-bar.html +0 -65
  203. data/vendor/examples/tipsy/tipsy-line.html +0 -67
  204. data/vendor/examples/tipsy/tipsy.css +0 -12
  205. data/vendor/examples/tipsy/tipsy.gif +0 -0
  206. data/vendor/examples/tipsy/tipsy.js +0 -66
  207. data/vendor/examples/weather/weather.html +0 -86
  208. data/vendor/examples/weather/weather.js +0 -42
  209. data/vendor/examples/wheat/wheat.html +0 -130
  210. data/vendor/examples/wheat/wheat.js +0 -70
  211. data/vendor/lib/google-compiler/COPYING +0 -202
  212. data/vendor/lib/google-compiler/README +0 -224
  213. data/vendor/lib/google-compiler/compiler-20100201.jar +0 -0
  214. data/vendor/protovis-d3.3.js +0 -15726
  215. data/vendor/test1.html +0 -30
  216. data/vendor/tests/behavior/drag-events.html +0 -47
  217. data/vendor/tests/behavior/drag.html +0 -32
  218. data/vendor/tests/behavior/drag2.html +0 -33
  219. data/vendor/tests/behavior/point-area-stacked.html +0 -73
  220. data/vendor/tests/behavior/point-area-stacked2.html +0 -70
  221. data/vendor/tests/behavior/point-area.html +0 -67
  222. data/vendor/tests/behavior/point-bar.html +0 -62
  223. data/vendor/tests/behavior/point-dot.html +0 -60
  224. data/vendor/tests/behavior/point-line.html +0 -62
  225. data/vendor/tests/behavior/point-lines-grid.html +0 -65
  226. data/vendor/tests/behavior/point-lines.html +0 -61
  227. data/vendor/tests/behavior/point-wedge.html +0 -43
  228. data/vendor/tests/behavior/resize.html +0 -69
  229. data/vendor/tests/behavior/select.html +0 -37
  230. data/vendor/tests/bzr.js +0 -62
  231. data/vendor/tests/center.js +0 -13
  232. data/vendor/tests/data/deviation.html +0 -54
  233. data/vendor/tests/data/histogram-discrete.html +0 -50
  234. data/vendor/tests/data/histogram.html +0 -56
  235. data/vendor/tests/data/log-adjusted.html +0 -48
  236. data/vendor/tests/data/log-ceil.html +0 -48
  237. data/vendor/tests/data/log-floor.html +0 -48
  238. data/vendor/tests/data/log-symmetric.html +0 -48
  239. data/vendor/tests/data/log.html +0 -48
  240. data/vendor/tests/data/max-index.html +0 -36
  241. data/vendor/tests/data/max.html +0 -36
  242. data/vendor/tests/data/min-index.html +0 -36
  243. data/vendor/tests/data/min.html +0 -36
  244. data/vendor/tests/data/ordinal-split-banded.html +0 -45
  245. data/vendor/tests/data/ordinal-split-banded2.html +0 -45
  246. data/vendor/tests/data/ordinal-split-flush.html +0 -51
  247. data/vendor/tests/data/ordinal-split.html +0 -51
  248. data/vendor/tests/data/range.html +0 -105
  249. data/vendor/tests/data/scale-date.html +0 -46
  250. data/vendor/tests/data/scale-date2.html +0 -38
  251. data/vendor/tests/data/scale-date3.html +0 -38
  252. data/vendor/tests/data/scale-date4.html +0 -38
  253. data/vendor/tests/data/scale-degenerate.html +0 -143
  254. data/vendor/tests/data/scale-linear.html +0 -59
  255. data/vendor/tests/data/scale-log.html +0 -60
  256. data/vendor/tests/data/scale-log2.html +0 -60
  257. data/vendor/tests/data/scale-log3.html +0 -60
  258. data/vendor/tests/data/scale-log4.html +0 -60
  259. data/vendor/tests/data/scale-log5.html +0 -60
  260. data/vendor/tests/data/scale-log6.html +0 -60
  261. data/vendor/tests/data/scale-quantile.html +0 -47
  262. data/vendor/tests/data/scale-quantile2.html +0 -50
  263. data/vendor/tests/data/scale-quantile3.html +0 -48
  264. data/vendor/tests/data/scale-root.html +0 -60
  265. data/vendor/tests/data/scale-root2.html +0 -39
  266. data/vendor/tests/data/scale-tick-format.html +0 -54
  267. data/vendor/tests/data/scale-ticks.html +0 -45
  268. data/vendor/tests/data/sum.html +0 -42
  269. data/vendor/tests/data/variance.html +0 -42
  270. data/vendor/tests/diamond.js +0 -40
  271. data/vendor/tests/flare-imports.js +0 -222
  272. data/vendor/tests/flare.js +0 -284
  273. data/vendor/tests/geo/countries-hires.js +0 -257
  274. data/vendor/tests/geo/countries-lores.js +0 -197
  275. data/vendor/tests/geo/population.js +0 -250
  276. data/vendor/tests/geo/scale-aitoff.html +0 -58
  277. data/vendor/tests/geo/scale-gall-peters.html +0 -56
  278. data/vendor/tests/geo/scale-hammer.html +0 -58
  279. data/vendor/tests/geo/scale-identity.html +0 -56
  280. data/vendor/tests/geo/scale-mercator.html +0 -56
  281. data/vendor/tests/geo/scale-sinusoidal.html +0 -57
  282. data/vendor/tests/geo/scale-smart-domain.html +0 -58
  283. data/vendor/tests/geo/scale.html +0 -55
  284. data/vendor/tests/geo/scale2.html +0 -40
  285. data/vendor/tests/geo/us-states.js +0 -61
  286. data/vendor/tests/heatmap.js +0 -63
  287. data/vendor/tests/lang/globals.html +0 -41
  288. data/vendor/tests/lang/init.html +0 -31
  289. data/vendor/tests/layers.js +0 -28
  290. data/vendor/tests/layout/arc-directed.html +0 -33
  291. data/vendor/tests/layout/arc-radial.html +0 -36
  292. data/vendor/tests/layout/arc-undirected.html +0 -32
  293. data/vendor/tests/layout/arc.html +0 -33
  294. data/vendor/tests/layout/arc2.html +0 -32
  295. data/vendor/tests/layout/bullet-multiples.html +0 -60
  296. data/vendor/tests/layout/bullet.html +0 -45
  297. data/vendor/tests/layout/bullets.js +0 -37
  298. data/vendor/tests/layout/cluster-fill-group.html +0 -24
  299. data/vendor/tests/layout/cluster-fill.html +0 -28
  300. data/vendor/tests/layout/cluster-partition-radial-fill.html +0 -43
  301. data/vendor/tests/layout/cluster-radial-fill-radius.html +0 -26
  302. data/vendor/tests/layout/cluster-radial-fill.html +0 -29
  303. data/vendor/tests/layout/cluster-radial-group-fill.html +0 -30
  304. data/vendor/tests/layout/cluster-radial-radius.html +0 -30
  305. data/vendor/tests/layout/cluster-radial.html +0 -28
  306. data/vendor/tests/layout/cluster-radial2.html +0 -33
  307. data/vendor/tests/layout/cluster.html +0 -34
  308. data/vendor/tests/layout/cluster2.html +0 -32
  309. data/vendor/tests/layout/force-toggle.html +0 -46
  310. data/vendor/tests/layout/force.html +0 -45
  311. data/vendor/tests/layout/force2.html +0 -58
  312. data/vendor/tests/layout/force3.html +0 -41
  313. data/vendor/tests/layout/force4.html +0 -45
  314. data/vendor/tests/layout/force5.html +0 -53
  315. data/vendor/tests/layout/grid-cols.html +0 -31
  316. data/vendor/tests/layout/grid-heatmap.html +0 -25
  317. data/vendor/tests/layout/grid-rows.html +0 -31
  318. data/vendor/tests/layout/grid.html +0 -34
  319. data/vendor/tests/layout/horizon-color.html +0 -31
  320. data/vendor/tests/layout/horizon.html +0 -31
  321. data/vendor/tests/layout/indent-toggle.html +0 -62
  322. data/vendor/tests/layout/indent.html +0 -25
  323. data/vendor/tests/layout/indent2.html +0 -33
  324. data/vendor/tests/layout/matrix-sort.html +0 -28
  325. data/vendor/tests/layout/matrix.html +0 -35
  326. data/vendor/tests/layout/network.html +0 -43
  327. data/vendor/tests/layout/pack-bubble.html +0 -45
  328. data/vendor/tests/layout/pack.html +0 -26
  329. data/vendor/tests/layout/pack2.html +0 -32
  330. data/vendor/tests/layout/partition-fill.html +0 -27
  331. data/vendor/tests/layout/partition-fill2.html +0 -22
  332. data/vendor/tests/layout/partition-fill3.html +0 -27
  333. data/vendor/tests/layout/partition-radial-fill-radius.html +0 -25
  334. data/vendor/tests/layout/partition-radial-fill.html +0 -26
  335. data/vendor/tests/layout/partition-radial-fill2.html +0 -23
  336. data/vendor/tests/layout/partition-radial-fill3.html +0 -29
  337. data/vendor/tests/layout/partition-radial-radius.html +0 -29
  338. data/vendor/tests/layout/partition-radial.html +0 -30
  339. data/vendor/tests/layout/partition-radial2.html +0 -33
  340. data/vendor/tests/layout/partition.html +0 -33
  341. data/vendor/tests/layout/partition2.html +0 -32
  342. data/vendor/tests/layout/rollup.html +0 -50
  343. data/vendor/tests/layout/stack-empty.html +0 -27
  344. data/vendor/tests/layout/stack-expand.html +0 -41
  345. data/vendor/tests/layout/stack-reverse.html +0 -42
  346. data/vendor/tests/layout/stack-right.html +0 -42
  347. data/vendor/tests/layout/stack-rule.html +0 -61
  348. data/vendor/tests/layout/stack-visible.html +0 -43
  349. data/vendor/tests/layout/stack.html +0 -53
  350. data/vendor/tests/layout/tree-radial.html +0 -31
  351. data/vendor/tests/layout/tree-radial2.html +0 -34
  352. data/vendor/tests/layout/tree-toggle.html +0 -36
  353. data/vendor/tests/layout/tree.html +0 -31
  354. data/vendor/tests/layout/tree2.html +0 -35
  355. data/vendor/tests/layout/treemap-hierarchy.html +0 -40
  356. data/vendor/tests/layout/treemap-margin.html +0 -26
  357. data/vendor/tests/layout/treemap-round.html +0 -40
  358. data/vendor/tests/layout/treemap-slice.html +0 -34
  359. data/vendor/tests/layout/treemap.html +0 -37
  360. data/vendor/tests/life.js +0 -212
  361. data/vendor/tests/mark/anchor.html +0 -25
  362. data/vendor/tests/mark/area-anchor-chain.html +0 -42
  363. data/vendor/tests/mark/area-anchor-line.html +0 -57
  364. data/vendor/tests/mark/area-anchor-stack.html +0 -35
  365. data/vendor/tests/mark/area-anchor.html +0 -43
  366. data/vendor/tests/mark/area-anchor2.html +0 -33
  367. data/vendor/tests/mark/area-cardinal.html +0 -57
  368. data/vendor/tests/mark/area-monotone.html +0 -57
  369. data/vendor/tests/mark/area-segmented-basis.html +0 -30
  370. data/vendor/tests/mark/area-segmented-cardinal.html +0 -30
  371. data/vendor/tests/mark/area-segmented-monotone.html +0 -30
  372. data/vendor/tests/mark/area-segmented-step.html +0 -44
  373. data/vendor/tests/mark/area-segmented.html +0 -29
  374. data/vendor/tests/mark/area-stacked-cardinal.html +0 -54
  375. data/vendor/tests/mark/area-stacked-monotone.html +0 -54
  376. data/vendor/tests/mark/area-stacked.html +0 -53
  377. data/vendor/tests/mark/area-step.html +0 -43
  378. data/vendor/tests/mark/area-zero.html +0 -32
  379. data/vendor/tests/mark/area.html +0 -57
  380. data/vendor/tests/mark/bar-anchor-stack.html +0 -51
  381. data/vendor/tests/mark/bar-anchor.html +0 -44
  382. data/vendor/tests/mark/bar-column-grouped.html +0 -63
  383. data/vendor/tests/mark/bar-column-stacked.html +0 -56
  384. data/vendor/tests/mark/bar-column.html +0 -54
  385. data/vendor/tests/mark/bar-grouped.html +0 -63
  386. data/vendor/tests/mark/bar-stacked.html +0 -57
  387. data/vendor/tests/mark/bar.html +0 -54
  388. data/vendor/tests/mark/cursor.html +0 -41
  389. data/vendor/tests/mark/def-type.html +0 -23
  390. data/vendor/tests/mark/dot-anchor.html +0 -33
  391. data/vendor/tests/mark/dot-radius.html +0 -22
  392. data/vendor/tests/mark/dot-stroke.html +0 -43
  393. data/vendor/tests/mark/dot.html +0 -52
  394. data/vendor/tests/mark/dot2.html +0 -61
  395. data/vendor/tests/mark/ease.html +0 -90
  396. data/vendor/tests/mark/event-dblclick.html +0 -30
  397. data/vendor/tests/mark/event-prototype.html +0 -45
  398. data/vendor/tests/mark/event-render.html +0 -45
  399. data/vendor/tests/mark/event.html +0 -24
  400. data/vendor/tests/mark/image-color-inherit.html +0 -33
  401. data/vendor/tests/mark/image-color.html +0 -35
  402. data/vendor/tests/mark/image-color2.html +0 -35
  403. data/vendor/tests/mark/image-heatmap.html +0 -29
  404. data/vendor/tests/mark/image.html +0 -32
  405. data/vendor/tests/mark/label-break.html +0 -54
  406. data/vendor/tests/mark/label-decoration.html +0 -22
  407. data/vendor/tests/mark/label-events.html +0 -32
  408. data/vendor/tests/mark/line-anchor.html +0 -42
  409. data/vendor/tests/mark/line-basis.html +0 -54
  410. data/vendor/tests/mark/line-brownian.html +0 -57
  411. data/vendor/tests/mark/line-cardinal.html +0 -77
  412. data/vendor/tests/mark/line-catmull-rom.html +0 -78
  413. data/vendor/tests/mark/line-curve.html +0 -65
  414. data/vendor/tests/mark/line-eccentricity.html +0 -39
  415. data/vendor/tests/mark/line-fill.html +0 -24
  416. data/vendor/tests/mark/line-join.html +0 -51
  417. data/vendor/tests/mark/line-monotone-non-monotone.html +0 -53
  418. data/vendor/tests/mark/line-monotone-two-way.html +0 -61
  419. data/vendor/tests/mark/line-monotone.html +0 -53
  420. data/vendor/tests/mark/line-polar.html +0 -36
  421. data/vendor/tests/mark/line-segmented-basis.html +0 -57
  422. data/vendor/tests/mark/line-segmented-cardinal.html +0 -80
  423. data/vendor/tests/mark/line-segmented-join.html +0 -52
  424. data/vendor/tests/mark/line-segmented-monotone.html +0 -56
  425. data/vendor/tests/mark/line-segmented-polar.html +0 -30
  426. data/vendor/tests/mark/line-segmented-step.html +0 -41
  427. data/vendor/tests/mark/line-segmented-step2.html +0 -32
  428. data/vendor/tests/mark/line-segmented.html +0 -30
  429. data/vendor/tests/mark/line-step.html +0 -39
  430. data/vendor/tests/mark/line-tension.html +0 -59
  431. data/vendor/tests/mark/line.html +0 -51
  432. data/vendor/tests/mark/panel-anchor.html +0 -37
  433. data/vendor/tests/mark/panel-anchor2.html +0 -31
  434. data/vendor/tests/mark/panel-anchor3.html +0 -22
  435. data/vendor/tests/mark/panel-anchor4.html +0 -28
  436. data/vendor/tests/mark/panel-anchor5.html +0 -28
  437. data/vendor/tests/mark/panel-append.html +0 -29
  438. data/vendor/tests/mark/panel-canvas.html +0 -107
  439. data/vendor/tests/mark/panel-fill.html +0 -50
  440. data/vendor/tests/mark/panel-mouse.html +0 -53
  441. data/vendor/tests/mark/panel-transform.html +0 -67
  442. data/vendor/tests/mark/property-cast.html +0 -24
  443. data/vendor/tests/mark/render-partial.html +0 -42
  444. data/vendor/tests/mark/rule-anchor.html +0 -29
  445. data/vendor/tests/mark/title.html +0 -41
  446. data/vendor/tests/mark/transition-anchor.html +0 -47
  447. data/vendor/tests/mark/transition-wedge.html +0 -47
  448. data/vendor/tests/mark/transition.html +0 -106
  449. data/vendor/tests/mark/wedge-donut.html +0 -35
  450. data/vendor/tests/mark/wedge-implied.html +0 -42
  451. data/vendor/tests/mark/wedge-pie.html +0 -37
  452. data/vendor/tests/mark/wedge-ring.html +0 -27
  453. data/vendor/tests/miserables.js +0 -348
  454. data/vendor/tests/physics/dorling.html +0 -70
  455. data/vendor/tests/physics/simulation.html +0 -56
  456. data/vendor/tests/social.js +0 -28
  457. data/vendor/tests/stanford.png +0 -0
  458. data/vendor/tests/style.css +0 -5
  459. data/vendor/tests/testify.css +0 -29
  460. data/vendor/tests/testify.js +0 -16
  461. data/vendor/tests/text/format-number.html +0 -75
@@ -1,78 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Catmull-Rom Splines</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var data = pv.range(10).map(function(x) {
10
- return {x: x, y: Math.sin(x * Math.PI + Math.PI / 2)};
11
- }),
12
- w = 800,
13
- h = 400,
14
- x = pv.Scale.linear(data, function(d) d.x).range(0, w),
15
- y = pv.Scale.linear(-1.5, 1.5).range(0, h);
16
-
17
- var vis = new pv.Panel()
18
- .width(w)
19
- .height(h)
20
- .strokeStyle("#ccc")
21
- .margin(20);
22
-
23
- vis.add(pv.Rule)
24
- .data(y.ticks())
25
- .visible(function() !(this.index % 2))
26
- .bottom(y)
27
- .strokeStyle("#eee")
28
- .anchor("left").add(pv.Label)
29
- .text(function(d) d.toFixed(1));
30
-
31
- vis.add(pv.Rule)
32
- .data(x.ticks())
33
- .visible(function(d) d > 0)
34
- .left(x)
35
- .strokeStyle("#eee")
36
- .anchor("bottom").add(pv.Label)
37
- .text(function(d) d.toFixed());
38
-
39
- vis.add(pv.Line)
40
- .data(data)
41
- .left(function(d) x(d.x))
42
- .bottom(function(d) y(d.y))
43
- .interpolate("cardinal")
44
- .tension(0);
45
-
46
- vis.add(pv.Panel)
47
- .data(data)
48
- .add(pv.Dot)
49
- .strokeStyle("#1f77b4")
50
- .left(function(d) x(d.x))
51
- .bottom(function(d) y(d.y))
52
- .add(pv.Line)
53
- .data(function(d) {
54
- var dm = data[this.parent.index - 1],
55
- dp = data[this.parent.index + 1];
56
- if (!dm) {
57
- dm = d;
58
- dp = data[this.parent.index + 2];
59
- } else if (!dp) {
60
- dp = d;
61
- dm = data[this.parent.index - 2];
62
- }
63
- var dx = (dp.x - dm.x) / 2,
64
- dy = (dp.y - dm.y) / 2;
65
- return [
66
- {x: d.x - dx, y: d.y - dy},
67
- {x: d.x + dx, y: d.y + dy}
68
- ];
69
- })
70
- .fillStyle(null)
71
- .strokeStyle(pv.colors("orange", "brown").by(function() this.parent.index >> 1 & 1))
72
- .add(pv.Dot);
73
-
74
- vis.render();
75
-
76
- </script>
77
- </body>
78
- </html>
@@ -1,65 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Splines</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var data = pv.range(0, 10, .5).map(function(x) {
10
- return {x: x, y: Math.sin(x) + Math.random() + 2};
11
- }),
12
- w = 800,
13
- h = 400,
14
- x = pv.Scale.linear(data, function(d) d.x).range(0, w),
15
- y = pv.Scale.linear(0, 4.5).range(0, h);
16
-
17
- var vis = new pv.Panel()
18
- .width(w)
19
- .height(h)
20
- .strokeStyle("#ccc")
21
- .margin(20);
22
-
23
- vis.add(pv.Rule)
24
- .data(y.ticks())
25
- .visible(function() !(this.index % 2))
26
- .bottom(y)
27
- .strokeStyle("#eee")
28
- .anchor("left").add(pv.Label)
29
- .text(function(d) d.toFixed(1));
30
-
31
- vis.add(pv.Rule)
32
- .data(x.ticks())
33
- .visible(function(d) d > 0)
34
- .left(x)
35
- .strokeStyle("#eee")
36
- .anchor("bottom").add(pv.Label)
37
- .text(function(d) d.toFixed());
38
-
39
- vis.add(pv.Line)
40
- .data(data)
41
- .left(function(d) x(d.x))
42
- .bottom(function(d) y(d.y))
43
- .interpolate("basis")
44
- .strokeStyle("#3f3")
45
- .lineWidth(2);
46
-
47
- vis.add(pv.Line)
48
- .data(data)
49
- .left(function(d) x(d.x))
50
- .bottom(function(d) y(d.y))
51
- .interpolate("cardinal")
52
- .tension(0.5)
53
- .strokeStyle("#f33")
54
- .lineWidth(2);
55
-
56
- vis.add(pv.Dot)
57
- .data(data)
58
- .left(function(d) x(d.x))
59
- .bottom(function(d) y(d.y));
60
-
61
- vis.render();
62
-
63
- </script>
64
- </body>
65
- </html>
@@ -1,39 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Line Eccentricity</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var e = 0, de = 0.01;
10
-
11
- var vis = new pv.Panel()
12
- .width(400)
13
- .height(400)
14
- .margin(10)
15
- .strokeStyle("#ccc");
16
-
17
- vis.add(pv.Line)
18
- .data([{x:75,y:75},{x:200,y:200},{x:325,y:325}])
19
- .lineWidth(10)
20
- .left(function(d) d.x)
21
- .top(function(d) d.y)
22
- .interpolate(function() this.index & 1 ? "polar-reverse" : "polar")
23
- .eccentricity(function() e);
24
-
25
- vis.anchor("center").add(pv.Label)
26
- .text(function() e.toFixed(2));
27
-
28
- vis.render();
29
-
30
- setInterval(function() {
31
- e += de;
32
- if (e < 0) { e = 0; de *= -1; }
33
- else if (e > 1) { e = 1; de *= -1; }
34
- vis.render();
35
- }, 42);
36
-
37
- </script>
38
- </body>
39
- </html>
@@ -1,24 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Line Fill</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var vis = new pv.Panel()
10
- .width(150)
11
- .height(150);
12
-
13
- vis.add(pv.Line)
14
- .data(pv.range(-.1, 2 * Math.PI, .1))
15
- .left(function(d) Math.cos(d) * (Math.cos(d * 5) + 5) * 10 + 75)
16
- .top(function(d) Math.sin(d) * (Math.cos(d * 5) + 5) * 10 + 75)
17
- .fillStyle("orange")
18
- .interpolate("polar");
19
-
20
- vis.render();
21
-
22
- </script>
23
- </body>
24
- </html>
@@ -1,51 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Line Joins</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- <link type="text/css" href="../style.css" rel="stylesheet"/>
6
- <style type="text/css">
7
-
8
- span {
9
- display: block !important;
10
- }
11
-
12
- </style>
13
- </head>
14
- <body>
15
- <script type="text/javascript+protovis">
16
-
17
- var joins = ["miter", "round", "bevel", null],
18
- itrps = ["linear", "step-before", "step-after", "polar", "polar-reverse"],
19
- w = 160,
20
- h = 80,
21
- p = 80;
22
-
23
- var vis = new pv.Panel()
24
- .width((w + p) * joins.length)
25
- .height((h + p) * itrps.length)
26
- .margin(40);
27
-
28
- var panel = vis.add(pv.Panel)
29
- .data(pv.cross(itrps, joins))
30
- .left(function() this.index % joins.length * (w + p))
31
- .top(function() ~~(this.index / joins.length) * (h + p))
32
- .width(w)
33
- .height(h);
34
-
35
- panel.add(pv.Line)
36
- .data([{x:0,y:w/2},{x:w/3,y:0},{x:2*w/3,y:h},{x:w,y:0}])
37
- .left(function(d) d.x)
38
- .top(function(d) d.y)
39
- .interpolate(function(d, p) p[0])
40
- .lineJoin(function(d, p) p[1])
41
- .lineWidth(20)
42
- .strokeStyle("rgba(0,0,0,.5)");
43
-
44
- panel.anchor("center").add(pv.Label)
45
- .text(function(d) d.map(String));
46
-
47
- vis.render();
48
-
49
- </script>
50
- </body>
51
- </html>
@@ -1,53 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Monotone curve on non monotone data</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var data = [4.0, 3.9, 3.0, 2.5, 1.0, 1.0, 1.0, 0.7, 0.2, 0.1, 0.1, 0.3, 1.2, 1.2, 1.2, 2.8, 2.8, 1.0],
10
- w = 600,
11
- h = 400,
12
- x = pv.Scale.linear(0, data.length+1).range(0, w),
13
- y = pv.Scale.linear(0, 4.5).range(0, h);
14
-
15
- var vis = new pv.Panel()
16
- .width(w)
17
- .height(h)
18
- .strokeStyle("#ccc")
19
- .margin(20);
20
-
21
- vis.add(pv.Rule)
22
- .data(y.ticks())
23
- .visible(function() !(this.index % 2))
24
- .bottom(function(d) Math.round(y(d)) - .5)
25
- .strokeStyle("#eee")
26
- .anchor("left").add(pv.Label)
27
- .text(function(d) d.toFixed(1));
28
-
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
-
37
- vis.add(pv.Line)
38
- .data(data)
39
- .left(function() x(this.index+1))
40
- .bottom(y)
41
- .interpolate("monotone");
42
-
43
- vis.add(pv.Dot)
44
- .data(data)
45
- .left(function() x(this.index+1))
46
- .bottom(y)
47
- .strokeStyle("#f33");
48
-
49
- vis.render();
50
-
51
- </script>
52
- </body>
53
- </html>
@@ -1,61 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Monotone curve</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var data = [4.0, 3.9, 3.0, 2.5, 1.0, 1.0, 1.0, 0.7, 0.2, 0.1],
10
- rdata = [4.0, 3.9, 3.0, 2.5, 1.0, 1.0, 1.0, 0.7, 0.2, 0.1].reverse(),
11
- w = 600,
12
- h = 400,
13
- x = pv.Scale.linear(0, data.length+1).range(0, w),
14
- y = pv.Scale.linear(0, 4.5).range(0, h);
15
-
16
- var vis = new pv.Panel()
17
- .width(w)
18
- .height(h)
19
- .strokeStyle("#ccc")
20
- .margin(20);
21
-
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
-
30
- vis.add(pv.Rule)
31
- .data(x.ticks())
32
- .visible(function(d) d > 0)
33
- .left(function(d) Math.round(x(d)) - .5)
34
- .strokeStyle("#eee")
35
- .anchor("bottom").add(pv.Label)
36
- .text(function(d) d.toFixed());
37
-
38
- vis.add(pv.Line)
39
- .data(data)
40
- .left(function() x(this.index+1))
41
- .bottom(y)
42
- .interpolate("monotone");
43
-
44
- vis.add(pv.Line)
45
- .data(rdata)
46
- .left(function() x(data.length - this.index))
47
- .bottom(y)
48
- .interpolate("monotone")
49
- .strokeStyle("green");
50
-
51
- vis.add(pv.Dot)
52
- .data(data)
53
- .left(function() x(this.index+1))
54
- .bottom(y)
55
- .strokeStyle("#f33");
56
-
57
- vis.render();
58
-
59
- </script>
60
- </body>
61
- </html>
@@ -1,53 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Monotone curve</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var data = [4.0, 3.9, 3.0, 2.5, 1.0, 1.0, 1.0, 0.7, 0.2, 0.1],
10
- w = 600,
11
- h = 400,
12
- x = pv.Scale.linear(0, data.length+1).range(0, w),
13
- y = pv.Scale.linear(0, 4.5).range(0, h);
14
-
15
- var vis = new pv.Panel()
16
- .width(w)
17
- .height(h)
18
- .strokeStyle("#ccc")
19
- .margin(20);
20
-
21
- vis.add(pv.Rule)
22
- .data(y.ticks())
23
- .visible(function() !(this.index % 2))
24
- .bottom(function(d) Math.round(y(d)) - .5)
25
- .strokeStyle("#eee")
26
- .anchor("left").add(pv.Label)
27
- .text(function(d) d.toFixed(1));
28
-
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
-
37
- vis.add(pv.Line)
38
- .data(data)
39
- .left(function() x(this.index+1))
40
- .bottom(y)
41
- .interpolate("monotone");
42
-
43
- vis.add(pv.Dot)
44
- .data(data)
45
- .left(function() x(this.index+1))
46
- .bottom(y)
47
- .strokeStyle("#f33");
48
-
49
- vis.render();
50
-
51
- </script>
52
- </body>
53
- </html>
@@ -1,36 +0,0 @@
1
- <html>
2
- <head>
3
- <title>Line Fill</title>
4
- <script type="text/javascript" src="../../protovis-d3.3.js"></script>
5
- </head>
6
- <body>
7
- <script type="text/javascript+protovis">
8
-
9
- var vis = new pv.Panel()
10
- .width(400)
11
- .height(400)
12
- .left(10)
13
- .top(10)
14
- .bottom(10)
15
- .right(10);
16
-
17
- vis.add(pv.Line)
18
- .data([{x:0,y:100},{x:100,y:100}])
19
- .strokeStyle("red")
20
- .fillStyle(function() this.strokeStyle().darker().alpha(.5))
21
- .lineWidth(10)
22
- .left(function(d) d.x)
23
- .top(function(d) d.y)
24
- .interpolate("polar")
25
- .add(pv.Line)
26
- .strokeStyle("green")
27
- .data([{x:200,y:100},{x:100,y:100}])
28
- .add(pv.Line)
29
- .strokeStyle("blue")
30
- .data([{x:200,y:0},{x:200,y:100}]);
31
-
32
- vis.render();
33
-
34
- </script>
35
- </body>
36
- </html>