Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

ScalePoint

Point scales are a variant of band scales with the bandwidth fixed to zero. Point scales are typically used for scatterplots with an ordinal or categorical dimension. The unknown value of a point scale is always undefined: they do not allow implicit domain construction.

The generic corresponds to the data type of domain elements.

interface ScalePoint <Domain extends {
toString(): string;
}
>
{
(x: Domain): number | undefined;
align(): number;
align(align: number): this;
bandwidth(): number;
copy(): this;
domain(): Domain[];
domain(domain: Iterable<Domain>): this;
padding(): number;
padding(padding: number): this;
range(): [number, number];
range(range: Iterable<NumberValue>): this;
rangeRound(range: Iterable<NumberValue>): this;
round(): boolean;
round(round: boolean): this;
step(): number;
}

§Type Parameters

§
Domain extends {
toString(): string;
}
[src]

§Call Signatures

§
(x: Domain): number | undefined
[src]

Given a value in the input domain, returns the corresponding point derived from the output range. If the given value is not in the scale’s domain, returns undefined.

§Methods

§
align(): number
[src]

Returns the current alignment which defaults to 0.5.

§
align(align: number): this
[src]

Sets the alignment to the specified value which must be in the range [0, 1].

The alignment determines how any leftover unused space in the range is distributed. A value of 0.5 indicates that the leftover space should be equally distributed before the first point and after the last point; i.e., the points should be centered within the range. A value of 0 or 1 may be used to shift the points to one side, say to position them adjacent to an axis.

The default value is 0.5.

@param align

Value for alignment setting in [0, 1] interval.

§
bandwidth(): number
[src]

Return 0.

§
copy(): this
[src]

Returns an exact copy of this scale. Changes to this scale will not affect the returned scale, and vice versa.

§
domain(): Domain[]
[src]

Returns the scale's current domain.

§
domain(domain: Iterable<Domain>): this
[src]

Sets the domain to the specified array of values. The first element in domain will be mapped to the first point, the second domain value to the second point, and so on. Domain values are stored internally in a map from stringified value to index; the resulting index is then used to determine the point. Thus, a point scale’s values must be coercible to a string, and the stringified version of the domain value uniquely identifies the corresponding point.

@param domain

Array of domain values.

§
padding(): number
[src]

Returns the current outer padding which defaults to 0. The outer padding determines the ratio of the range that is reserved for blank space before the first point and after the last point.

§
padding(padding: number): this
[src]

Sets the outer padding to the specified value which must be in the range [0, 1]. The outer padding determines the ratio of the range that is reserved for blank space before the first point and after the last point.

The default is 0.

@param padding

Value for outer padding in [0, 1] interval.

§
range(): [number, number]
[src]

Returns the scale’s current range, which defaults to [0, 1].

§
range(range: Iterable<NumberValue>): this
[src]

Sets the scale’s range to the specified two-element array of numbers. If the elements in the given array are not numbers, they will be coerced to numbers. The default range is [0, 1].

@param range

A two-element array of numeric values.

§
rangeRound(range: Iterable<NumberValue>): this
[src]

Sets the scale’s range to the specified two-element array of numbers while also enabling rounding. If the elements in the given array are not numbers, they will be coerced to numbers.

Rounding is sometimes useful for avoiding antialiasing artifacts, though also consider the shape-rendering “crispEdges” styles.

@param range

A two-element array of numeric values.

§
round(): boolean
[src]

Returns the current rounding status for the scale: enabled (= true) or disabled (= false).

§
round(round: boolean): this
[src]

Enables or disables rounding accordingly. If rounding is enabled, the position of each point will be integers. Rounding is sometimes useful for avoiding antialiasing artifacts, though also consider the shape-rendering “crispEdges” styles. Note that if the width of the domain is not a multiple of the cardinality of the range, there may be leftover unused space, even without padding! Use point.align to specify how the leftover space is distributed.

@param round

Enable rounding (= true), disable rounding (= false).

§
step(): number
[src]

Returns the distance between the starts of adjacent points.