rubyvis 0.1.1 → 0.1.2
Sign up to get free protection for your applications and to get access to all the features.
- data.tar.gz.sig +0 -0
- data/History.txt +8 -1
- data/Manifest.txt +100 -416
- data/README.txt +5 -2
- data/examples/barley/barley.rb +79 -0
- data/examples/crimea/crimea.rb +37 -0
- data/examples/crimea/crimea_line.rb +47 -0
- data/examples/second.rb +2 -2
- data/examples/third.rb +16 -0
- data/lib/rubyvis.rb +2 -1
- data/lib/rubyvis/color/color.rb +170 -169
- data/lib/rubyvis/color/colors.rb +4 -4
- data/lib/rubyvis/color/ramp.rb +1 -0
- data/lib/rubyvis/format.rb +2 -2
- data/lib/rubyvis/format/date.rb +9 -2
- data/lib/rubyvis/format/number.rb +3 -3
- data/lib/rubyvis/internals.rb +13 -13
- data/lib/rubyvis/javascript_behaviour.rb +3 -3
- data/lib/rubyvis/label.rb +1 -0
- data/lib/rubyvis/mark.rb +178 -169
- data/lib/rubyvis/mark/anchor.rb +4 -4
- data/lib/rubyvis/mark/area.rb +93 -5
- data/lib/rubyvis/mark/bar.rb +1 -1
- data/lib/rubyvis/mark/label.rb +2 -2
- data/lib/rubyvis/mark/line.rb +11 -5
- data/lib/rubyvis/mark/panel.rb +13 -11
- data/lib/rubyvis/mark/rule.rb +2 -2
- data/lib/rubyvis/property.rb +3 -2
- data/lib/rubyvis/scale.rb +4 -4
- data/lib/rubyvis/scale/linear.rb +2 -2
- data/lib/rubyvis/scale/ordinal.rb +41 -41
- data/lib/rubyvis/scale/quantitative.rb +212 -200
- data/lib/rubyvis/scene/svg_bar.rb +21 -21
- data/lib/rubyvis/scene/svg_label.rb +34 -34
- data/lib/rubyvis/scene/svg_line.rb +185 -0
- data/lib/rubyvis/scene/svg_panel.rb +36 -30
- data/lib/rubyvis/scene/svg_rule.rb +18 -19
- data/lib/rubyvis/scene/svg_scene.rb +33 -30
- data/lib/rubyvis/sceneelement.rb +5 -1
- data/lib/rubyvis/transform.rb +2 -2
- data/spec/mark_spec.rb +6 -6
- data/spec/scale_linear_datetime_spec.rb +52 -0
- data/spec/scale_linear_spec.rb +0 -10
- data/vendor/{protovis-r3.3.js → protovis/protovis-r3.3.js} +0 -0
- data/vendor/{src → protovis/src}/behavior/Behavior.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Drag.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Pan.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Point.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Resize.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Select.js +0 -0
- data/vendor/{src → protovis/src}/behavior/Zoom.js +0 -0
- data/vendor/{src → protovis/src}/color/Color.js +0 -0
- data/vendor/{src → protovis/src}/color/Colors.js +0 -0
- data/vendor/{src → protovis/src}/color/Ramp.js +0 -0
- data/vendor/{src → protovis/src}/data/Arrays.js +0 -0
- data/vendor/{src → protovis/src}/data/Dom.js +0 -0
- data/vendor/{src → protovis/src}/data/Flatten.js +0 -0
- data/vendor/{src → protovis/src}/data/Histogram.js +0 -0
- data/vendor/{src → protovis/src}/data/LinearScale.js +0 -0
- data/vendor/{src → protovis/src}/data/LogScale.js +0 -0
- data/vendor/{src → protovis/src}/data/Nest.js +0 -0
- data/vendor/{src → protovis/src}/data/Numbers.js +0 -0
- data/vendor/{src → protovis/src}/data/Objects.js +0 -0
- data/vendor/{src → protovis/src}/data/OrdinalScale.js +0 -0
- data/vendor/{src → protovis/src}/data/QuantileScale.js +0 -0
- data/vendor/{src → protovis/src}/data/QuantitativeScale.js +0 -0
- data/vendor/{src → protovis/src}/data/RootScale.js +0 -0
- data/vendor/{src → protovis/src}/data/Scale.js +0 -0
- data/vendor/{src → protovis/src}/data/Transform.js +0 -0
- data/vendor/{src → protovis/src}/data/Tree.js +0 -0
- data/vendor/{src → protovis/src}/data/Vector.js +0 -0
- data/vendor/{src → protovis/src}/geo/Geo.js +0 -0
- data/vendor/{src → protovis/src}/geo/GeoScale.js +0 -0
- data/vendor/{src → protovis/src}/geo/LatLng.js +0 -0
- data/vendor/{src → protovis/src}/geo/Projection.js +0 -0
- data/vendor/{src → protovis/src}/geo/Projections.js +0 -0
- data/vendor/{src → protovis/src}/lang/Array.js +0 -0
- data/vendor/{src → protovis/src}/lang/init.js +0 -0
- data/vendor/{src → protovis/src}/layout/Arc.js +0 -0
- data/vendor/{src → protovis/src}/layout/Bullet.js +0 -0
- data/vendor/{src → protovis/src}/layout/Cluster.js +0 -0
- data/vendor/{src → protovis/src}/layout/Force.js +0 -0
- data/vendor/{src → protovis/src}/layout/Grid.js +0 -0
- data/vendor/{src → protovis/src}/layout/Hierarchy.js +0 -0
- data/vendor/{src → protovis/src}/layout/Horizon.js +0 -0
- data/vendor/{src → protovis/src}/layout/Indent.js +0 -0
- data/vendor/{src → protovis/src}/layout/Layout.js +0 -0
- data/vendor/{src → protovis/src}/layout/Matrix.js +0 -0
- data/vendor/{src → protovis/src}/layout/Network.js +0 -0
- data/vendor/{src → protovis/src}/layout/Pack.js +0 -0
- data/vendor/{src → protovis/src}/layout/Partition.js +0 -0
- data/vendor/{src → protovis/src}/layout/Rollup.js +0 -0
- data/vendor/{src → protovis/src}/layout/Stack.js +0 -0
- data/vendor/{src → protovis/src}/layout/Tree.js +0 -0
- data/vendor/{src → protovis/src}/layout/Treemap.js +0 -0
- data/vendor/{src → protovis/src}/mark/Anchor.js +0 -0
- data/vendor/{src → protovis/src}/mark/Area.js +0 -0
- data/vendor/{src → protovis/src}/mark/Bar.js +0 -0
- data/vendor/{src → protovis/src}/mark/Dot.js +0 -0
- data/vendor/{src → protovis/src}/mark/Ease.js +0 -0
- data/vendor/{src → protovis/src}/mark/Image.js +0 -0
- data/vendor/{src → protovis/src}/mark/Label.js +0 -0
- data/vendor/{src → protovis/src}/mark/Line.js +0 -0
- data/vendor/{src → protovis/src}/mark/Mark.js +0 -0
- data/vendor/{src → protovis/src}/mark/Panel.js +0 -0
- data/vendor/{src → protovis/src}/mark/Rule.js +0 -0
- data/vendor/{src → protovis/src}/mark/Transient.js +0 -0
- data/vendor/{src → protovis/src}/mark/Transition.js +0 -0
- data/vendor/{src → protovis/src}/mark/Wedge.js +0 -0
- data/vendor/{src → protovis/src}/physics/BoundConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/ChargeForce.js +0 -0
- data/vendor/{src → protovis/src}/physics/CollisionConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/Constraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/DragForce.js +0 -0
- data/vendor/{src → protovis/src}/physics/Force.js +0 -0
- data/vendor/{src → protovis/src}/physics/Particle.js +0 -0
- data/vendor/{src → protovis/src}/physics/PositionConstraint.js +0 -0
- data/vendor/{src → protovis/src}/physics/Quadtree.js +0 -0
- data/vendor/{src → protovis/src}/physics/Simulation.js +0 -0
- data/vendor/{src → protovis/src}/physics/SpringForce.js +0 -0
- data/vendor/{src → protovis/src}/pv-internals.js +0 -0
- data/vendor/{src → protovis/src}/pv.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgArea.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgBar.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgCurve.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgDot.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgImage.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgLabel.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgLine.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgPanel.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgRule.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgScene.js +0 -0
- data/vendor/{src → protovis/src}/scene/SvgWedge.js +0 -0
- data/vendor/{src → protovis/src}/text/DateFormat.js +0 -0
- data/vendor/{src → protovis/src}/text/Format.js +0 -0
- data/vendor/{src → protovis/src}/text/NumberFormat.js +0 -0
- data/vendor/{src → protovis/src}/text/TimeFormat.js +0 -0
- metadata +132 -426
- metadata.gz.sig +2 -0
- data/examples/crimea-line.rb +0 -64
- data/vendor/FUTURE +0 -62
- data/vendor/Makefile +0 -138
- data/vendor/TODO +0 -22
- data/vendor/examples/antibiotics/antibiotics-scatter.html +0 -113
- data/vendor/examples/antibiotics/antibiotics.html +0 -140
- data/vendor/examples/antibiotics/antibiotics.js +0 -20
- data/vendor/examples/barley/barley.html +0 -102
- data/vendor/examples/barley/barley.js +0 -122
- data/vendor/examples/cars/cars.html +0 -90
- data/vendor/examples/cars/cars.js +0 -408
- data/vendor/examples/clock/clock.html +0 -91
- data/vendor/examples/crimea/crimea-grouped-bar.html +0 -65
- data/vendor/examples/crimea/crimea-line.html +0 -61
- data/vendor/examples/crimea/crimea-stacked-area.html +0 -61
- data/vendor/examples/crimea/crimea-stacked-bar.html +0 -60
- data/vendor/examples/crimea/crimea.html +0 -100
- data/vendor/examples/crimea/crimea.js +0 -33
- data/vendor/examples/downloadify/LICENSE.txt +0 -22
- data/vendor/examples/downloadify/download.png +0 -0
- data/vendor/examples/downloadify/downloadify.html +0 -57
- data/vendor/examples/downloadify/downloadify.min.js +0 -3
- data/vendor/examples/downloadify/downloadify.swf +0 -0
- data/vendor/examples/downloadify/swfobject.js +0 -4
- data/vendor/examples/ex.css +0 -17
- data/vendor/examples/eyes/eyes.html +0 -53
- data/vendor/examples/eyes/matrix.html +0 -44
- data/vendor/examples/flowers/flowers.html +0 -109
- data/vendor/examples/flowers/flowers.js +0 -154
- data/vendor/examples/group-stack/group-stack.html +0 -79
- data/vendor/examples/group-stack/headcount.js +0 -23
- data/vendor/examples/hotel/hotel.html +0 -76
- data/vendor/examples/hotel/hotel.js +0 -245
- data/vendor/examples/jobs/jobs.html +0 -71
- data/vendor/examples/jobs/jobs.js +0 -1024
- data/vendor/examples/jquery-1.4.2.min.js +0 -154
- data/vendor/examples/nba/nba.html +0 -83
- data/vendor/examples/nba/nba.js +0 -53
- data/vendor/examples/nba/nba2.html +0 -82
- data/vendor/examples/sankey/gdp2009.js +0 -184
- data/vendor/examples/sankey/sankey.html +0 -77
- data/vendor/examples/slider/cell.html +0 -112
- data/vendor/examples/slider/cell.js +0 -31
- data/vendor/examples/slider/horizon.html +0 -85
- data/vendor/examples/slider/jquery-ui-1.8rc3.custom.min.js +0 -71
- data/vendor/examples/slider/slider.html +0 -50
- data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_18_b81900_40x40.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_diagonals-thick_20_666666_40x40.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_flat_10_000000_40x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_f6f6f6_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_100_fdf5ce_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_glass_65_ffffff_1x400.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_gloss-wave_35_f6a828_500x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_100_eeeeee_1x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-bg_highlight-soft_75_ffe45c_1x100.png +0 -0
- data/vendor/examples/slider/ui-lightness/images/ui-icons_222222_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_228ef1_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ef8c08_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ffd27a_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/images/ui-icons_ffffff_256x240.png +0 -2
- data/vendor/examples/slider/ui-lightness/jquery-ui-1.8rc3.custom.css +0 -302
- data/vendor/examples/tipsy/jquery.tipsy.js +0 -198
- data/vendor/examples/tipsy/tipsy-bar.html +0 -65
- data/vendor/examples/tipsy/tipsy-line.html +0 -67
- data/vendor/examples/tipsy/tipsy.css +0 -12
- data/vendor/examples/tipsy/tipsy.gif +0 -0
- data/vendor/examples/tipsy/tipsy.js +0 -66
- data/vendor/examples/weather/weather.html +0 -86
- data/vendor/examples/weather/weather.js +0 -42
- data/vendor/examples/wheat/wheat.html +0 -130
- data/vendor/examples/wheat/wheat.js +0 -70
- data/vendor/lib/google-compiler/COPYING +0 -202
- data/vendor/lib/google-compiler/README +0 -224
- data/vendor/lib/google-compiler/compiler-20100201.jar +0 -0
- data/vendor/protovis-d3.3.js +0 -15726
- data/vendor/test1.html +0 -30
- data/vendor/tests/behavior/drag-events.html +0 -47
- data/vendor/tests/behavior/drag.html +0 -32
- data/vendor/tests/behavior/drag2.html +0 -33
- data/vendor/tests/behavior/point-area-stacked.html +0 -73
- data/vendor/tests/behavior/point-area-stacked2.html +0 -70
- data/vendor/tests/behavior/point-area.html +0 -67
- data/vendor/tests/behavior/point-bar.html +0 -62
- data/vendor/tests/behavior/point-dot.html +0 -60
- data/vendor/tests/behavior/point-line.html +0 -62
- data/vendor/tests/behavior/point-lines-grid.html +0 -65
- data/vendor/tests/behavior/point-lines.html +0 -61
- data/vendor/tests/behavior/point-wedge.html +0 -43
- data/vendor/tests/behavior/resize.html +0 -69
- data/vendor/tests/behavior/select.html +0 -37
- data/vendor/tests/bzr.js +0 -62
- data/vendor/tests/center.js +0 -13
- data/vendor/tests/data/deviation.html +0 -54
- data/vendor/tests/data/histogram-discrete.html +0 -50
- data/vendor/tests/data/histogram.html +0 -56
- data/vendor/tests/data/log-adjusted.html +0 -48
- data/vendor/tests/data/log-ceil.html +0 -48
- data/vendor/tests/data/log-floor.html +0 -48
- data/vendor/tests/data/log-symmetric.html +0 -48
- data/vendor/tests/data/log.html +0 -48
- data/vendor/tests/data/max-index.html +0 -36
- data/vendor/tests/data/max.html +0 -36
- data/vendor/tests/data/min-index.html +0 -36
- data/vendor/tests/data/min.html +0 -36
- data/vendor/tests/data/ordinal-split-banded.html +0 -45
- data/vendor/tests/data/ordinal-split-banded2.html +0 -45
- data/vendor/tests/data/ordinal-split-flush.html +0 -51
- data/vendor/tests/data/ordinal-split.html +0 -51
- data/vendor/tests/data/range.html +0 -105
- data/vendor/tests/data/scale-date.html +0 -46
- data/vendor/tests/data/scale-date2.html +0 -38
- data/vendor/tests/data/scale-date3.html +0 -38
- data/vendor/tests/data/scale-date4.html +0 -38
- data/vendor/tests/data/scale-degenerate.html +0 -143
- data/vendor/tests/data/scale-linear.html +0 -59
- data/vendor/tests/data/scale-log.html +0 -60
- data/vendor/tests/data/scale-log2.html +0 -60
- data/vendor/tests/data/scale-log3.html +0 -60
- data/vendor/tests/data/scale-log4.html +0 -60
- data/vendor/tests/data/scale-log5.html +0 -60
- data/vendor/tests/data/scale-log6.html +0 -60
- data/vendor/tests/data/scale-quantile.html +0 -47
- data/vendor/tests/data/scale-quantile2.html +0 -50
- data/vendor/tests/data/scale-quantile3.html +0 -48
- data/vendor/tests/data/scale-root.html +0 -60
- data/vendor/tests/data/scale-root2.html +0 -39
- data/vendor/tests/data/scale-tick-format.html +0 -54
- data/vendor/tests/data/scale-ticks.html +0 -45
- data/vendor/tests/data/sum.html +0 -42
- data/vendor/tests/data/variance.html +0 -42
- data/vendor/tests/diamond.js +0 -40
- data/vendor/tests/flare-imports.js +0 -222
- data/vendor/tests/flare.js +0 -284
- data/vendor/tests/geo/countries-hires.js +0 -257
- data/vendor/tests/geo/countries-lores.js +0 -197
- data/vendor/tests/geo/population.js +0 -250
- data/vendor/tests/geo/scale-aitoff.html +0 -58
- data/vendor/tests/geo/scale-gall-peters.html +0 -56
- data/vendor/tests/geo/scale-hammer.html +0 -58
- data/vendor/tests/geo/scale-identity.html +0 -56
- data/vendor/tests/geo/scale-mercator.html +0 -56
- data/vendor/tests/geo/scale-sinusoidal.html +0 -57
- data/vendor/tests/geo/scale-smart-domain.html +0 -58
- data/vendor/tests/geo/scale.html +0 -55
- data/vendor/tests/geo/scale2.html +0 -40
- data/vendor/tests/geo/us-states.js +0 -61
- data/vendor/tests/heatmap.js +0 -63
- data/vendor/tests/lang/globals.html +0 -41
- data/vendor/tests/lang/init.html +0 -31
- data/vendor/tests/layers.js +0 -28
- data/vendor/tests/layout/arc-directed.html +0 -33
- data/vendor/tests/layout/arc-radial.html +0 -36
- data/vendor/tests/layout/arc-undirected.html +0 -32
- data/vendor/tests/layout/arc.html +0 -33
- data/vendor/tests/layout/arc2.html +0 -32
- data/vendor/tests/layout/bullet-multiples.html +0 -60
- data/vendor/tests/layout/bullet.html +0 -45
- data/vendor/tests/layout/bullets.js +0 -37
- data/vendor/tests/layout/cluster-fill-group.html +0 -24
- data/vendor/tests/layout/cluster-fill.html +0 -28
- data/vendor/tests/layout/cluster-partition-radial-fill.html +0 -43
- data/vendor/tests/layout/cluster-radial-fill-radius.html +0 -26
- data/vendor/tests/layout/cluster-radial-fill.html +0 -29
- data/vendor/tests/layout/cluster-radial-group-fill.html +0 -30
- data/vendor/tests/layout/cluster-radial-radius.html +0 -30
- data/vendor/tests/layout/cluster-radial.html +0 -28
- data/vendor/tests/layout/cluster-radial2.html +0 -33
- data/vendor/tests/layout/cluster.html +0 -34
- data/vendor/tests/layout/cluster2.html +0 -32
- data/vendor/tests/layout/force-toggle.html +0 -46
- data/vendor/tests/layout/force.html +0 -45
- data/vendor/tests/layout/force2.html +0 -58
- data/vendor/tests/layout/force3.html +0 -41
- data/vendor/tests/layout/force4.html +0 -45
- data/vendor/tests/layout/force5.html +0 -53
- data/vendor/tests/layout/grid-cols.html +0 -31
- data/vendor/tests/layout/grid-heatmap.html +0 -25
- data/vendor/tests/layout/grid-rows.html +0 -31
- data/vendor/tests/layout/grid.html +0 -34
- data/vendor/tests/layout/horizon-color.html +0 -31
- data/vendor/tests/layout/horizon.html +0 -31
- data/vendor/tests/layout/indent-toggle.html +0 -62
- data/vendor/tests/layout/indent.html +0 -25
- data/vendor/tests/layout/indent2.html +0 -33
- data/vendor/tests/layout/matrix-sort.html +0 -28
- data/vendor/tests/layout/matrix.html +0 -35
- data/vendor/tests/layout/network.html +0 -43
- data/vendor/tests/layout/pack-bubble.html +0 -45
- data/vendor/tests/layout/pack.html +0 -26
- data/vendor/tests/layout/pack2.html +0 -32
- data/vendor/tests/layout/partition-fill.html +0 -27
- data/vendor/tests/layout/partition-fill2.html +0 -22
- data/vendor/tests/layout/partition-fill3.html +0 -27
- data/vendor/tests/layout/partition-radial-fill-radius.html +0 -25
- data/vendor/tests/layout/partition-radial-fill.html +0 -26
- data/vendor/tests/layout/partition-radial-fill2.html +0 -23
- data/vendor/tests/layout/partition-radial-fill3.html +0 -29
- data/vendor/tests/layout/partition-radial-radius.html +0 -29
- data/vendor/tests/layout/partition-radial.html +0 -30
- data/vendor/tests/layout/partition-radial2.html +0 -33
- data/vendor/tests/layout/partition.html +0 -33
- data/vendor/tests/layout/partition2.html +0 -32
- data/vendor/tests/layout/rollup.html +0 -50
- data/vendor/tests/layout/stack-empty.html +0 -27
- data/vendor/tests/layout/stack-expand.html +0 -41
- data/vendor/tests/layout/stack-reverse.html +0 -42
- data/vendor/tests/layout/stack-right.html +0 -42
- data/vendor/tests/layout/stack-rule.html +0 -61
- data/vendor/tests/layout/stack-visible.html +0 -43
- data/vendor/tests/layout/stack.html +0 -53
- data/vendor/tests/layout/tree-radial.html +0 -31
- data/vendor/tests/layout/tree-radial2.html +0 -34
- data/vendor/tests/layout/tree-toggle.html +0 -36
- data/vendor/tests/layout/tree.html +0 -31
- data/vendor/tests/layout/tree2.html +0 -35
- data/vendor/tests/layout/treemap-hierarchy.html +0 -40
- data/vendor/tests/layout/treemap-margin.html +0 -26
- data/vendor/tests/layout/treemap-round.html +0 -40
- data/vendor/tests/layout/treemap-slice.html +0 -34
- data/vendor/tests/layout/treemap.html +0 -37
- data/vendor/tests/life.js +0 -212
- data/vendor/tests/mark/anchor.html +0 -25
- data/vendor/tests/mark/area-anchor-chain.html +0 -42
- data/vendor/tests/mark/area-anchor-line.html +0 -57
- data/vendor/tests/mark/area-anchor-stack.html +0 -35
- data/vendor/tests/mark/area-anchor.html +0 -43
- data/vendor/tests/mark/area-anchor2.html +0 -33
- data/vendor/tests/mark/area-cardinal.html +0 -57
- data/vendor/tests/mark/area-monotone.html +0 -57
- data/vendor/tests/mark/area-segmented-basis.html +0 -30
- data/vendor/tests/mark/area-segmented-cardinal.html +0 -30
- data/vendor/tests/mark/area-segmented-monotone.html +0 -30
- data/vendor/tests/mark/area-segmented-step.html +0 -44
- data/vendor/tests/mark/area-segmented.html +0 -29
- data/vendor/tests/mark/area-stacked-cardinal.html +0 -54
- data/vendor/tests/mark/area-stacked-monotone.html +0 -54
- data/vendor/tests/mark/area-stacked.html +0 -53
- data/vendor/tests/mark/area-step.html +0 -43
- data/vendor/tests/mark/area-zero.html +0 -32
- data/vendor/tests/mark/area.html +0 -57
- data/vendor/tests/mark/bar-anchor-stack.html +0 -51
- data/vendor/tests/mark/bar-anchor.html +0 -44
- data/vendor/tests/mark/bar-column-grouped.html +0 -63
- data/vendor/tests/mark/bar-column-stacked.html +0 -56
- data/vendor/tests/mark/bar-column.html +0 -54
- data/vendor/tests/mark/bar-grouped.html +0 -63
- data/vendor/tests/mark/bar-stacked.html +0 -57
- data/vendor/tests/mark/bar.html +0 -54
- data/vendor/tests/mark/cursor.html +0 -41
- data/vendor/tests/mark/def-type.html +0 -23
- data/vendor/tests/mark/dot-anchor.html +0 -33
- data/vendor/tests/mark/dot-radius.html +0 -22
- data/vendor/tests/mark/dot-stroke.html +0 -43
- data/vendor/tests/mark/dot.html +0 -52
- data/vendor/tests/mark/dot2.html +0 -61
- data/vendor/tests/mark/ease.html +0 -90
- data/vendor/tests/mark/event-dblclick.html +0 -30
- data/vendor/tests/mark/event-prototype.html +0 -45
- data/vendor/tests/mark/event-render.html +0 -45
- data/vendor/tests/mark/event.html +0 -24
- data/vendor/tests/mark/image-color-inherit.html +0 -33
- data/vendor/tests/mark/image-color.html +0 -35
- data/vendor/tests/mark/image-color2.html +0 -35
- data/vendor/tests/mark/image-heatmap.html +0 -29
- data/vendor/tests/mark/image.html +0 -32
- data/vendor/tests/mark/label-break.html +0 -54
- data/vendor/tests/mark/label-decoration.html +0 -22
- data/vendor/tests/mark/label-events.html +0 -32
- data/vendor/tests/mark/line-anchor.html +0 -42
- data/vendor/tests/mark/line-basis.html +0 -54
- data/vendor/tests/mark/line-brownian.html +0 -57
- data/vendor/tests/mark/line-cardinal.html +0 -77
- data/vendor/tests/mark/line-catmull-rom.html +0 -78
- data/vendor/tests/mark/line-curve.html +0 -65
- data/vendor/tests/mark/line-eccentricity.html +0 -39
- data/vendor/tests/mark/line-fill.html +0 -24
- data/vendor/tests/mark/line-join.html +0 -51
- data/vendor/tests/mark/line-monotone-non-monotone.html +0 -53
- data/vendor/tests/mark/line-monotone-two-way.html +0 -61
- data/vendor/tests/mark/line-monotone.html +0 -53
- data/vendor/tests/mark/line-polar.html +0 -36
- data/vendor/tests/mark/line-segmented-basis.html +0 -57
- data/vendor/tests/mark/line-segmented-cardinal.html +0 -80
- data/vendor/tests/mark/line-segmented-join.html +0 -52
- data/vendor/tests/mark/line-segmented-monotone.html +0 -56
- data/vendor/tests/mark/line-segmented-polar.html +0 -30
- data/vendor/tests/mark/line-segmented-step.html +0 -41
- data/vendor/tests/mark/line-segmented-step2.html +0 -32
- data/vendor/tests/mark/line-segmented.html +0 -30
- data/vendor/tests/mark/line-step.html +0 -39
- data/vendor/tests/mark/line-tension.html +0 -59
- data/vendor/tests/mark/line.html +0 -51
- data/vendor/tests/mark/panel-anchor.html +0 -37
- data/vendor/tests/mark/panel-anchor2.html +0 -31
- data/vendor/tests/mark/panel-anchor3.html +0 -22
- data/vendor/tests/mark/panel-anchor4.html +0 -28
- data/vendor/tests/mark/panel-anchor5.html +0 -28
- data/vendor/tests/mark/panel-append.html +0 -29
- data/vendor/tests/mark/panel-canvas.html +0 -107
- data/vendor/tests/mark/panel-fill.html +0 -50
- data/vendor/tests/mark/panel-mouse.html +0 -53
- data/vendor/tests/mark/panel-transform.html +0 -67
- data/vendor/tests/mark/property-cast.html +0 -24
- data/vendor/tests/mark/render-partial.html +0 -42
- data/vendor/tests/mark/rule-anchor.html +0 -29
- data/vendor/tests/mark/title.html +0 -41
- data/vendor/tests/mark/transition-anchor.html +0 -47
- data/vendor/tests/mark/transition-wedge.html +0 -47
- data/vendor/tests/mark/transition.html +0 -106
- data/vendor/tests/mark/wedge-donut.html +0 -35
- data/vendor/tests/mark/wedge-implied.html +0 -42
- data/vendor/tests/mark/wedge-pie.html +0 -37
- data/vendor/tests/mark/wedge-ring.html +0 -27
- data/vendor/tests/miserables.js +0 -348
- data/vendor/tests/physics/dorling.html +0 -70
- data/vendor/tests/physics/simulation.html +0 -56
- data/vendor/tests/social.js +0 -28
- data/vendor/tests/stanford.png +0 -0
- data/vendor/tests/style.css +0 -5
- data/vendor/tests/testify.css +0 -29
- data/vendor/tests/testify.js +0 -16
- data/vendor/tests/text/format-number.html +0 -75
@@ -1,42 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Wedge Implied</title>
|
4
|
-
<script type="text/javascript" src="../../protovis-d3.3.js"></script>
|
5
|
-
<link type="text/css" href="../style.css" rel="stylesheet"/>
|
6
|
-
</head>
|
7
|
-
<body>
|
8
|
-
<script type="text/javascript+protovis">
|
9
|
-
|
10
|
-
var vis = new pv.Panel()
|
11
|
-
.width(400)
|
12
|
-
.height(400);
|
13
|
-
|
14
|
-
vis.add(pv.Wedge)
|
15
|
-
.data(pv.range(10))
|
16
|
-
.innerRadius(function(d) (d + 2) * 15)
|
17
|
-
.outerRadius(function(d) (d + 3) * 15)
|
18
|
-
.startAngle(function(d) Math.PI / 2 + d / 10 * Math.PI)
|
19
|
-
.angle(2)
|
20
|
-
.event("mouseover", function() this.angle(3))
|
21
|
-
.event("mouseout", function() this.angle(2));
|
22
|
-
|
23
|
-
vis.render();
|
24
|
-
|
25
|
-
</script><p>
|
26
|
-
|
27
|
-
This test verifies that updating the <tt>angle</tt> property from within an
|
28
|
-
event handler functions correctly. Mouseover the wedges to see them switch
|
29
|
-
from <tt>angle</tt> 2 to 3.
|
30
|
-
|
31
|
-
<p>Previously, event handlers would not re-evaluate properties; instead the
|
32
|
-
event handler could directly set arbitrary property values and the corresponding
|
33
|
-
SVG element would be updated. This had a bug such that if the <tt>angle</tt>
|
34
|
-
were set during render, the implied <tt>endAngle</tt> would not be updated, and
|
35
|
-
the wedge would not be rendered correctly.
|
36
|
-
|
37
|
-
<p>Now that event handlers cannot directly set property values, and instead
|
38
|
-
update property definitions which then are re-evaluated as part of render,
|
39
|
-
wedge definitions can be manipulated interactively to no ill effect.
|
40
|
-
|
41
|
-
</body>
|
42
|
-
</html>
|
@@ -1,37 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Pie</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(Math.random).sort(pv.reverseOrder),
|
10
|
-
w = 400,
|
11
|
-
h = 400,
|
12
|
-
r = w / 2,
|
13
|
-
a = pv.Scale.linear(0, pv.sum(data)).range(0, 2 * Math.PI);
|
14
|
-
|
15
|
-
var vis = new pv.Panel()
|
16
|
-
.width(w)
|
17
|
-
.height(h);
|
18
|
-
|
19
|
-
vis.add(pv.Wedge)
|
20
|
-
.data(data)
|
21
|
-
.outerRadius(r)
|
22
|
-
.angle(a)
|
23
|
-
.title(function(d) d)
|
24
|
-
.add(pv.Wedge) // invisible wedge to offset label
|
25
|
-
.visible(function(d) d > .15)
|
26
|
-
.innerRadius(2 * r / 3)
|
27
|
-
.outerRadius(r)
|
28
|
-
.fillStyle(null)
|
29
|
-
.anchor("center").add(pv.Label)
|
30
|
-
.textAngle(0)
|
31
|
-
.text(function(d) d.toFixed(2));
|
32
|
-
|
33
|
-
vis.render();
|
34
|
-
|
35
|
-
</script>
|
36
|
-
</body>
|
37
|
-
</html>
|
@@ -1,27 +0,0 @@
|
|
1
|
-
<html>
|
2
|
-
<head>
|
3
|
-
<title>Donut</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 w = 400,
|
10
|
-
h = 400,
|
11
|
-
r = w / 2,
|
12
|
-
t = 30;
|
13
|
-
|
14
|
-
var vis = new pv.Panel()
|
15
|
-
.width(w)
|
16
|
-
.height(h);
|
17
|
-
|
18
|
-
vis.add(pv.Wedge)
|
19
|
-
.innerRadius(r - t)
|
20
|
-
.outerRadius(r)
|
21
|
-
.angle(2 * Math.PI);
|
22
|
-
|
23
|
-
vis.render();
|
24
|
-
|
25
|
-
</script>
|
26
|
-
</body>
|
27
|
-
</html>
|
data/vendor/tests/miserables.js
DELETED
@@ -1,348 +0,0 @@
|
|
1
|
-
// This file contains the weighted network of coappearances of characters in
|
2
|
-
// Victor Hugo's novel "Les Miserables". Nodes represent characters as indicated
|
3
|
-
// by the labels, and edges connect any pair of characters that appear in the
|
4
|
-
// same chapter of the book. The values on the edges are the number of such
|
5
|
-
// coappearances. The data on coappearances were taken from D. E. Knuth, The
|
6
|
-
// Stanford GraphBase: A Platform for Combinatorial Computing, Addison-Wesley,
|
7
|
-
// Reading, MA (1993).
|
8
|
-
//
|
9
|
-
// The group labels were transcribed from "Finding and evaluating community
|
10
|
-
// structure in networks" by M. E. J. Newman and M. Girvan.
|
11
|
-
|
12
|
-
var miserables = {
|
13
|
-
nodes:[
|
14
|
-
{nodeName:"Myriel", group:1},
|
15
|
-
{nodeName:"Napoleon", group:1},
|
16
|
-
{nodeName:"Mlle. Baptistine", group:1},
|
17
|
-
{nodeName:"Mme. Magloire", group:1},
|
18
|
-
{nodeName:"Countess de Lo", group:1},
|
19
|
-
{nodeName:"Geborand", group:1},
|
20
|
-
{nodeName:"Champtercier", group:1},
|
21
|
-
{nodeName:"Cravatte", group:1},
|
22
|
-
{nodeName:"Count", group:1},
|
23
|
-
{nodeName:"Old Man", group:1},
|
24
|
-
{nodeName:"Labarre", group:2},
|
25
|
-
{nodeName:"Valjean", group:2},
|
26
|
-
{nodeName:"Marguerite", group:3},
|
27
|
-
{nodeName:"Mme. de R", group:2},
|
28
|
-
{nodeName:"Isabeau", group:2},
|
29
|
-
{nodeName:"Gervais", group:2},
|
30
|
-
{nodeName:"Tholomyes", group:3},
|
31
|
-
{nodeName:"Listolier", group:3},
|
32
|
-
{nodeName:"Fameuil", group:3},
|
33
|
-
{nodeName:"Blacheville", group:3},
|
34
|
-
{nodeName:"Favourite", group:3},
|
35
|
-
{nodeName:"Dahlia", group:3},
|
36
|
-
{nodeName:"Zephine", group:3},
|
37
|
-
{nodeName:"Fantine", group:3},
|
38
|
-
{nodeName:"Mme. Thenardier", group:4},
|
39
|
-
{nodeName:"Thenardier", group:4},
|
40
|
-
{nodeName:"Cosette", group:5},
|
41
|
-
{nodeName:"Javert", group:4},
|
42
|
-
{nodeName:"Fauchelevent", group:0},
|
43
|
-
{nodeName:"Bamatabois", group:2},
|
44
|
-
{nodeName:"Perpetue", group:3},
|
45
|
-
{nodeName:"Simplice", group:2},
|
46
|
-
{nodeName:"Scaufflaire", group:2},
|
47
|
-
{nodeName:"Woman 1", group:2},
|
48
|
-
{nodeName:"Judge", group:2},
|
49
|
-
{nodeName:"Champmathieu", group:2},
|
50
|
-
{nodeName:"Brevet", group:2},
|
51
|
-
{nodeName:"Chenildieu", group:2},
|
52
|
-
{nodeName:"Cochepaille", group:2},
|
53
|
-
{nodeName:"Pontmercy", group:4},
|
54
|
-
{nodeName:"Boulatruelle", group:6},
|
55
|
-
{nodeName:"Eponine", group:4},
|
56
|
-
{nodeName:"Anzelma", group:4},
|
57
|
-
{nodeName:"Woman 2", group:5},
|
58
|
-
{nodeName:"Mother Innocent", group:0},
|
59
|
-
{nodeName:"Gribier", group:0},
|
60
|
-
{nodeName:"Jondrette", group:7},
|
61
|
-
{nodeName:"Mme. Burgon", group:7},
|
62
|
-
{nodeName:"Gavroche", group:8},
|
63
|
-
{nodeName:"Gillenormand", group:5},
|
64
|
-
{nodeName:"Magnon", group:5},
|
65
|
-
{nodeName:"Mlle. Gillenormand", group:5},
|
66
|
-
{nodeName:"Mme. Pontmercy", group:5},
|
67
|
-
{nodeName:"Mlle. Vaubois", group:5},
|
68
|
-
{nodeName:"Lt. Gillenormand", group:5},
|
69
|
-
{nodeName:"Marius", group:8},
|
70
|
-
{nodeName:"Baroness T", group:5},
|
71
|
-
{nodeName:"Mabeuf", group:8},
|
72
|
-
{nodeName:"Enjolras", group:8},
|
73
|
-
{nodeName:"Combeferre", group:8},
|
74
|
-
{nodeName:"Prouvaire", group:8},
|
75
|
-
{nodeName:"Feuilly", group:8},
|
76
|
-
{nodeName:"Courfeyrac", group:8},
|
77
|
-
{nodeName:"Bahorel", group:8},
|
78
|
-
{nodeName:"Bossuet", group:8},
|
79
|
-
{nodeName:"Joly", group:8},
|
80
|
-
{nodeName:"Grantaire", group:8},
|
81
|
-
{nodeName:"Mother Plutarch", group:9},
|
82
|
-
{nodeName:"Gueulemer", group:4},
|
83
|
-
{nodeName:"Babet", group:4},
|
84
|
-
{nodeName:"Claquesous", group:4},
|
85
|
-
{nodeName:"Montparnasse", group:4},
|
86
|
-
{nodeName:"Toussaint", group:5},
|
87
|
-
{nodeName:"Child 1", group:10},
|
88
|
-
{nodeName:"Child 2", group:10},
|
89
|
-
{nodeName:"Brujon", group:4},
|
90
|
-
{nodeName:"Mme. Hucheloup", group:8}
|
91
|
-
],
|
92
|
-
links:[
|
93
|
-
{source:1, target:0, value:1},
|
94
|
-
{source:2, target:0, value:8},
|
95
|
-
{source:3, target:0, value:10},
|
96
|
-
{source:3, target:2, value:6},
|
97
|
-
{source:4, target:0, value:1},
|
98
|
-
{source:5, target:0, value:1},
|
99
|
-
{source:6, target:0, value:1},
|
100
|
-
{source:7, target:0, value:1},
|
101
|
-
{source:8, target:0, value:2},
|
102
|
-
{source:9, target:0, value:1},
|
103
|
-
{source:11, target:10, value:1},
|
104
|
-
{source:11, target:3, value:3},
|
105
|
-
{source:11, target:2, value:3},
|
106
|
-
{source:11, target:0, value:5},
|
107
|
-
{source:12, target:11, value:1},
|
108
|
-
{source:13, target:11, value:1},
|
109
|
-
{source:14, target:11, value:1},
|
110
|
-
{source:15, target:11, value:1},
|
111
|
-
{source:17, target:16, value:4},
|
112
|
-
{source:18, target:16, value:4},
|
113
|
-
{source:18, target:17, value:4},
|
114
|
-
{source:19, target:16, value:4},
|
115
|
-
{source:19, target:17, value:4},
|
116
|
-
{source:19, target:18, value:4},
|
117
|
-
{source:20, target:16, value:3},
|
118
|
-
{source:20, target:17, value:3},
|
119
|
-
{source:20, target:18, value:3},
|
120
|
-
{source:20, target:19, value:4},
|
121
|
-
{source:21, target:16, value:3},
|
122
|
-
{source:21, target:17, value:3},
|
123
|
-
{source:21, target:18, value:3},
|
124
|
-
{source:21, target:19, value:3},
|
125
|
-
{source:21, target:20, value:5},
|
126
|
-
{source:22, target:16, value:3},
|
127
|
-
{source:22, target:17, value:3},
|
128
|
-
{source:22, target:18, value:3},
|
129
|
-
{source:22, target:19, value:3},
|
130
|
-
{source:22, target:20, value:4},
|
131
|
-
{source:22, target:21, value:4},
|
132
|
-
{source:23, target:16, value:3},
|
133
|
-
{source:23, target:17, value:3},
|
134
|
-
{source:23, target:18, value:3},
|
135
|
-
{source:23, target:19, value:3},
|
136
|
-
{source:23, target:20, value:4},
|
137
|
-
{source:23, target:21, value:4},
|
138
|
-
{source:23, target:22, value:4},
|
139
|
-
{source:23, target:12, value:2},
|
140
|
-
{source:23, target:11, value:9},
|
141
|
-
{source:24, target:23, value:2},
|
142
|
-
{source:24, target:11, value:7},
|
143
|
-
{source:25, target:24, value:13},
|
144
|
-
{source:25, target:23, value:1},
|
145
|
-
{source:25, target:11, value:12},
|
146
|
-
{source:26, target:24, value:4},
|
147
|
-
{source:26, target:11, value:31},
|
148
|
-
{source:26, target:16, value:1},
|
149
|
-
{source:26, target:25, value:1},
|
150
|
-
{source:27, target:11, value:17},
|
151
|
-
{source:27, target:23, value:5},
|
152
|
-
{source:27, target:25, value:5},
|
153
|
-
{source:27, target:24, value:1},
|
154
|
-
{source:27, target:26, value:1},
|
155
|
-
{source:28, target:11, value:8},
|
156
|
-
{source:28, target:27, value:1},
|
157
|
-
{source:29, target:23, value:1},
|
158
|
-
{source:29, target:27, value:1},
|
159
|
-
{source:29, target:11, value:2},
|
160
|
-
{source:30, target:23, value:1},
|
161
|
-
{source:31, target:30, value:2},
|
162
|
-
{source:31, target:11, value:3},
|
163
|
-
{source:31, target:23, value:2},
|
164
|
-
{source:31, target:27, value:1},
|
165
|
-
{source:32, target:11, value:1},
|
166
|
-
{source:33, target:11, value:2},
|
167
|
-
{source:33, target:27, value:1},
|
168
|
-
{source:34, target:11, value:3},
|
169
|
-
{source:34, target:29, value:2},
|
170
|
-
{source:35, target:11, value:3},
|
171
|
-
{source:35, target:34, value:3},
|
172
|
-
{source:35, target:29, value:2},
|
173
|
-
{source:36, target:34, value:2},
|
174
|
-
{source:36, target:35, value:2},
|
175
|
-
{source:36, target:11, value:2},
|
176
|
-
{source:36, target:29, value:1},
|
177
|
-
{source:37, target:34, value:2},
|
178
|
-
{source:37, target:35, value:2},
|
179
|
-
{source:37, target:36, value:2},
|
180
|
-
{source:37, target:11, value:2},
|
181
|
-
{source:37, target:29, value:1},
|
182
|
-
{source:38, target:34, value:2},
|
183
|
-
{source:38, target:35, value:2},
|
184
|
-
{source:38, target:36, value:2},
|
185
|
-
{source:38, target:37, value:2},
|
186
|
-
{source:38, target:11, value:2},
|
187
|
-
{source:38, target:29, value:1},
|
188
|
-
{source:39, target:25, value:1},
|
189
|
-
{source:40, target:25, value:1},
|
190
|
-
{source:41, target:24, value:2},
|
191
|
-
{source:41, target:25, value:3},
|
192
|
-
{source:42, target:41, value:2},
|
193
|
-
{source:42, target:25, value:2},
|
194
|
-
{source:42, target:24, value:1},
|
195
|
-
{source:43, target:11, value:3},
|
196
|
-
{source:43, target:26, value:1},
|
197
|
-
{source:43, target:27, value:1},
|
198
|
-
{source:44, target:28, value:3},
|
199
|
-
{source:44, target:11, value:1},
|
200
|
-
{source:45, target:28, value:2},
|
201
|
-
{source:47, target:46, value:1},
|
202
|
-
{source:48, target:47, value:2},
|
203
|
-
{source:48, target:25, value:1},
|
204
|
-
{source:48, target:27, value:1},
|
205
|
-
{source:48, target:11, value:1},
|
206
|
-
{source:49, target:26, value:3},
|
207
|
-
{source:49, target:11, value:2},
|
208
|
-
{source:50, target:49, value:1},
|
209
|
-
{source:50, target:24, value:1},
|
210
|
-
{source:51, target:49, value:9},
|
211
|
-
{source:51, target:26, value:2},
|
212
|
-
{source:51, target:11, value:2},
|
213
|
-
{source:52, target:51, value:1},
|
214
|
-
{source:52, target:39, value:1},
|
215
|
-
{source:53, target:51, value:1},
|
216
|
-
{source:54, target:51, value:2},
|
217
|
-
{source:54, target:49, value:1},
|
218
|
-
{source:54, target:26, value:1},
|
219
|
-
{source:55, target:51, value:6},
|
220
|
-
{source:55, target:49, value:12},
|
221
|
-
{source:55, target:39, value:1},
|
222
|
-
{source:55, target:54, value:1},
|
223
|
-
{source:55, target:26, value:21},
|
224
|
-
{source:55, target:11, value:19},
|
225
|
-
{source:55, target:16, value:1},
|
226
|
-
{source:55, target:25, value:2},
|
227
|
-
{source:55, target:41, value:5},
|
228
|
-
{source:55, target:48, value:4},
|
229
|
-
{source:56, target:49, value:1},
|
230
|
-
{source:56, target:55, value:1},
|
231
|
-
{source:57, target:55, value:1},
|
232
|
-
{source:57, target:41, value:1},
|
233
|
-
{source:57, target:48, value:1},
|
234
|
-
{source:58, target:55, value:7},
|
235
|
-
{source:58, target:48, value:7},
|
236
|
-
{source:58, target:27, value:6},
|
237
|
-
{source:58, target:57, value:1},
|
238
|
-
{source:58, target:11, value:4},
|
239
|
-
{source:59, target:58, value:15},
|
240
|
-
{source:59, target:55, value:5},
|
241
|
-
{source:59, target:48, value:6},
|
242
|
-
{source:59, target:57, value:2},
|
243
|
-
{source:60, target:48, value:1},
|
244
|
-
{source:60, target:58, value:4},
|
245
|
-
{source:60, target:59, value:2},
|
246
|
-
{source:61, target:48, value:2},
|
247
|
-
{source:61, target:58, value:6},
|
248
|
-
{source:61, target:60, value:2},
|
249
|
-
{source:61, target:59, value:5},
|
250
|
-
{source:61, target:57, value:1},
|
251
|
-
{source:61, target:55, value:1},
|
252
|
-
{source:62, target:55, value:9},
|
253
|
-
{source:62, target:58, value:17},
|
254
|
-
{source:62, target:59, value:13},
|
255
|
-
{source:62, target:48, value:7},
|
256
|
-
{source:62, target:57, value:2},
|
257
|
-
{source:62, target:41, value:1},
|
258
|
-
{source:62, target:61, value:6},
|
259
|
-
{source:62, target:60, value:3},
|
260
|
-
{source:63, target:59, value:5},
|
261
|
-
{source:63, target:48, value:5},
|
262
|
-
{source:63, target:62, value:6},
|
263
|
-
{source:63, target:57, value:2},
|
264
|
-
{source:63, target:58, value:4},
|
265
|
-
{source:63, target:61, value:3},
|
266
|
-
{source:63, target:60, value:2},
|
267
|
-
{source:63, target:55, value:1},
|
268
|
-
{source:64, target:55, value:5},
|
269
|
-
{source:64, target:62, value:12},
|
270
|
-
{source:64, target:48, value:5},
|
271
|
-
{source:64, target:63, value:4},
|
272
|
-
{source:64, target:58, value:10},
|
273
|
-
{source:64, target:61, value:6},
|
274
|
-
{source:64, target:60, value:2},
|
275
|
-
{source:64, target:59, value:9},
|
276
|
-
{source:64, target:57, value:1},
|
277
|
-
{source:64, target:11, value:1},
|
278
|
-
{source:65, target:63, value:5},
|
279
|
-
{source:65, target:64, value:7},
|
280
|
-
{source:65, target:48, value:3},
|
281
|
-
{source:65, target:62, value:5},
|
282
|
-
{source:65, target:58, value:5},
|
283
|
-
{source:65, target:61, value:5},
|
284
|
-
{source:65, target:60, value:2},
|
285
|
-
{source:65, target:59, value:5},
|
286
|
-
{source:65, target:57, value:1},
|
287
|
-
{source:65, target:55, value:2},
|
288
|
-
{source:66, target:64, value:3},
|
289
|
-
{source:66, target:58, value:3},
|
290
|
-
{source:66, target:59, value:1},
|
291
|
-
{source:66, target:62, value:2},
|
292
|
-
{source:66, target:65, value:2},
|
293
|
-
{source:66, target:48, value:1},
|
294
|
-
{source:66, target:63, value:1},
|
295
|
-
{source:66, target:61, value:1},
|
296
|
-
{source:66, target:60, value:1},
|
297
|
-
{source:67, target:57, value:3},
|
298
|
-
{source:68, target:25, value:5},
|
299
|
-
{source:68, target:11, value:1},
|
300
|
-
{source:68, target:24, value:1},
|
301
|
-
{source:68, target:27, value:1},
|
302
|
-
{source:68, target:48, value:1},
|
303
|
-
{source:68, target:41, value:1},
|
304
|
-
{source:69, target:25, value:6},
|
305
|
-
{source:69, target:68, value:6},
|
306
|
-
{source:69, target:11, value:1},
|
307
|
-
{source:69, target:24, value:1},
|
308
|
-
{source:69, target:27, value:2},
|
309
|
-
{source:69, target:48, value:1},
|
310
|
-
{source:69, target:41, value:1},
|
311
|
-
{source:70, target:25, value:4},
|
312
|
-
{source:70, target:69, value:4},
|
313
|
-
{source:70, target:68, value:4},
|
314
|
-
{source:70, target:11, value:1},
|
315
|
-
{source:70, target:24, value:1},
|
316
|
-
{source:70, target:27, value:1},
|
317
|
-
{source:70, target:41, value:1},
|
318
|
-
{source:70, target:58, value:1},
|
319
|
-
{source:71, target:27, value:1},
|
320
|
-
{source:71, target:69, value:2},
|
321
|
-
{source:71, target:68, value:2},
|
322
|
-
{source:71, target:70, value:2},
|
323
|
-
{source:71, target:11, value:1},
|
324
|
-
{source:71, target:48, value:1},
|
325
|
-
{source:71, target:41, value:1},
|
326
|
-
{source:71, target:25, value:1},
|
327
|
-
{source:72, target:26, value:2},
|
328
|
-
{source:72, target:27, value:1},
|
329
|
-
{source:72, target:11, value:1},
|
330
|
-
{source:73, target:48, value:2},
|
331
|
-
{source:74, target:48, value:2},
|
332
|
-
{source:74, target:73, value:3},
|
333
|
-
{source:75, target:69, value:3},
|
334
|
-
{source:75, target:68, value:3},
|
335
|
-
{source:75, target:25, value:3},
|
336
|
-
{source:75, target:48, value:1},
|
337
|
-
{source:75, target:41, value:1},
|
338
|
-
{source:75, target:70, value:1},
|
339
|
-
{source:75, target:71, value:1},
|
340
|
-
{source:76, target:64, value:1},
|
341
|
-
{source:76, target:65, value:1},
|
342
|
-
{source:76, target:66, value:1},
|
343
|
-
{source:76, target:63, value:1},
|
344
|
-
{source:76, target:62, value:1},
|
345
|
-
{source:76, target:48, value:1},
|
346
|
-
{source:76, target:58, value:1}
|
347
|
-
]
|
348
|
-
};
|