We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
d3v!
d3v (Data Driven Document Views) is inspired by, and founded on, d3 (Data Driven Documents).
It is designed to handle, and transition between, multiple different views of data.
A HTML, SVG or any XML view is built like this:
view .elem("p") .atrr("alt","message") .text("hello");
Which would render as:
hello
view .elem("div") .elem("h1") .text("Message"); .elem("p") .atrr("alt","message") .text("hello");
Rendered as
There was an error while loading. Please reload this page.