Questions tagged [protovis]

Protovis is a graphical approach (toolkit) to visualization. It uses JavaScript and SVG for web-native visualizations

Protovis is free and open-source, provided under the BSD License. It uses JavaScript and SVG for web-native visualizations; no plugin required.

Protovis composes custom views of data with simple marks such as bars and dots. Unlike low-level graphics libraries that quickly become tedious for visualization, Protovis defines marks through dynamic properties that encode data, allowing inheritance, scales and layouts to simplify construction.

Protovis is no longer under active development. The final release of Protovis was v3.3.1. The Protovis team is now developing a new visualization library, D3.js, with improved support for animation and interaction. D3 builds on many of the concepts in Protovis.

2 questions
10
votes
5 answers

Web visualization libraries

What are some good visualization libraries for online use? Are they easy to use and is there good documentation?
vrish88
  • 1,143
  • 1
  • 9
  • 8
1
vote
0 answers

Adding Zoom & Pan for Protovis Dot Chart with GeoScale

var w = 810, h = 400, mapMargin = 30; geo = pv.Geo.scale().range(w, h); var vis = new pv.Panel() .width(w) .height(h) .top(50) .bottom(30) .def("i", -1); var dot = vis.add(pv.Dot) .data(geoPopList) …
Saneef
  • 147
  • 3