Interface | Description |
---|---|
ObjectAccessor<D,T> |
Class | Description |
---|---|
Color |
Constructing visualizations often involves working with colors.
|
EnteringSelection |
A selection returned by a call to
UpdateSelection.enter() . |
Formatter |
Allows a number to be formatted as a String.
|
HSLColor | |
Nest |
Nesting allows elements in an array to be grouped into a hierarchical tree
structure; think of it like the GROUP BY operator in SQL, except you can have
multiple levels of grouping, and the resulting output is a tree rather than a
flat table.
|
Prefix |
A SI Prefix, as
returned by
D3#formatPrefix()
Example:
var prefix = d3.formatPrefix(1.21e9);
console.log(prefix.symbol);
console.log(prefix.scale(1.21e9)); // 1.21
|
Random |
A pseudorandom number generation function.
|
RGBColor |
A color defined by red, green and blue components.
|
Selection |
A selection is an array of elements pulled from the current document.
|
Transform |
A Transform is a representation of a SVG transform
attribute.
|
Transition |
A transition is a special type of selection where the operators apply
smoothly over time rather than instantaneously.
|
UpdateSelection |
The result of the
Selection.data() methods. |
Value |
A
Value is an object wrapping a primitive or a complex value. |
Enum | Description |
---|---|
Transition.EventType |
Type of transition event.
|
Copyright © 2015 gwt-d3. All rights reserved.