| Class | Description |
|---|---|
| Arc |
A generator to create an arc by defining the inner radius, the outer radius,
the start angle, and the end angle.
|
| Area |
Generates path data for a closed piecewise linear curve, or polygon, as in an
area chart:
Conceptually, the polygon is formed using two lines: the top line is formed
using the x- and y1-accessor functions, and proceeds from left-to-right; the
bottom line is added to this line, using the x- and y0-accessor functions,
and proceeds from right-to-left. |
| Axis |
D3’s axis component displays reference lines for
Scales
automatically. |
| Brush | |
| Chord |
Constructs a new chord generator with the default accessor functions (that
assume the input data is an object with named attributes matching the
accessors; see below for details).
|
| Diagonal |
Diagonal generator.
|
| Line |
Generate a piecewise linear curve, as in a line chart.
|
| PathDataGenerator |
A
PathDataGenerator is an object containing information to simplify
the construction of the d attribute for SVG path element, allowing users to generate
complex shapes. |
| RadialLine |
A line generator where each points may be expressed as radial coordinates.
|
| SVG |
Provide access to svg routines.
|
| Symbol |
A
PathDataGenerator generating symbols shapes. |
| Enum | Description |
|---|---|
| Area.InterpolationMode | |
| Axis.Orientation |
Orientation of the ticks in relation to the axis.
|
| Brush.BrushEvent | |
| Line.InterpolationMode |
Interpolation mode to be specified in
Line.interpolate(InterpolationMode). |
| Symbol.Type |
Shape of the symbol.
|
Copyright © 2015 gwt-d3. All rights reserved.