Skip to content

Commit 72b2ff5

Browse files
committed
edits
1 parent 613a490 commit 72b2ff5

File tree

1 file changed

+11
-11
lines changed

1 file changed

+11
-11
lines changed

src/marks/area.d.ts

+11-11
Original file line numberDiff line numberDiff line change
@@ -7,31 +7,31 @@ import type {StackOptions} from "../transforms/stack.js";
77
/** Options for the area, areaX, and areaY marks. */
88
export interface AreaOptions extends MarkOptions, StackOptions, CurveOptions {
99
/**
10-
* The required primary horizontal position channel, typically bound to the
11-
* *x* scale. It typically represents the area’s baseline. For areaX, setting
12-
* this option disables the implicit stackX transform.
10+
* The required primary horizontal position channel, representing the area’s
11+
* baseline, typically bound to the *x* scale. For areaX, setting this option
12+
* disables the implicit stackX transform.
1313
*/
1414
x1?: ChannelValueSpec;
1515

1616
/**
17-
* The optional secondary horizontal position channel, typically bound to the
18-
* *x* scale; if not specified, **x1** is used. It typically represents the
19-
* area’s topline. For areaX, setting this option disables the implicit stackX
17+
* The optional secondary horizontal position channel, representing the area’s
18+
* topline, typically bound to the *x* scale; if not specified, **x1** is
19+
* used. For areaX, setting this option disables the implicit stackX
2020
* transform.
2121
*/
2222
x2?: ChannelValueSpec;
2323

2424
/**
25-
* The required primary vertical position channel, typically bound to the *y*
26-
* scale. It typically represents the area’s baseline. For areaY, setting this option
25+
* The required primary vertical position channel, representing the area’s
26+
* baseline, typically bound to the *y* scale. For areaY, setting this option
2727
* disables the implicit stackY transform.
2828
*/
2929
y1?: ChannelValueSpec;
3030

3131
/**
32-
* The optional secondary vertical position channel, typically bound to the
33-
* *y* scale; if not specified, **y1** is used. It typically represents the
34-
* area’s topline. For areaY, setting this option disables the implicit stackY
32+
* The optional secondary vertical position channel, representing the area’s
33+
* topline, typically bound to the *y* scale; if not specified, **y1** is
34+
* used. For areaY, setting this option disables the implicit stackY
3535
* transform.
3636
*/
3737
y2?: ChannelValueSpec;

0 commit comments

Comments
 (0)