@@ -7,31 +7,31 @@ import type {StackOptions} from "../transforms/stack.js";
7
7
/** Options for the area, areaX, and areaY marks. */
8
8
export interface AreaOptions extends MarkOptions , StackOptions , CurveOptions {
9
9
/**
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.
13
13
*/
14
14
x1 ?: ChannelValueSpec ;
15
15
16
16
/**
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
20
20
* transform.
21
21
*/
22
22
x2 ?: ChannelValueSpec ;
23
23
24
24
/**
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
27
27
* disables the implicit stackY transform.
28
28
*/
29
29
y1 ?: ChannelValueSpec ;
30
30
31
31
/**
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
35
35
* transform.
36
36
*/
37
37
y2 ?: ChannelValueSpec ;
0 commit comments