Package | Description |
---|---|
com.github.gwtd3.api.scales | |
com.github.gwtd3.api.time |
Modifier and Type | Class and Description |
---|---|
class |
ContinuousQuantitativeScale<S extends ContinuousQuantitativeScale<S>>
QuantitativeScale with a continuous range:
LinearScale have a linear interpolator
LogScale have apply a log function to the domain
PowScale
IdentityScale
TimeScale are linear scale for timestamp
|
Modifier and Type | Class and Description |
---|---|
class |
IdentityScale
Identity scales are a special case of linear scales where the domain and
range are identical; the
Scale.apply(double) and its
invert(double) method are both the identity function. |
class |
LinearScale
Linear scales are the most common scale, and a good default choice to map a
continuous input domain to a continuous output range.
|
class |
LogScale
Log scales are similar to linear scales, except there's a logarithmic
transform that is applied to the input domain value before the output range
value is computed.
|
class |
PowScale
Power scales are similar to linear scales, except there's an exponential
transform that is applied to the input domain value before the output range
value is computed.
|
Modifier and Type | Class and Description |
---|---|
class |
TimeScale
D3's time scale is an extension of
LinearScale that uses JavaScript
Date objects as the domain representation. |
Copyright © 2015 gwt-d3. All rights reserved.