Skip to content

Commit db64216

Browse files
committed
typically bound to the scale
1 parent 71827ca commit db64216

File tree

1 file changed

+14
-6
lines changed

1 file changed

+14
-6
lines changed

src/marks/tick.d.ts

+14-6
Original file line numberDiff line numberDiff line change
@@ -4,22 +4,30 @@ import type {Data, MarkOptions, RenderableMark} from "../mark.js";
44

55
/** Options for the tickX mark. */
66
export interface TickXOptions extends MarkOptions, Omit<InsetOptions, "insetLeft" | "insetRight"> {
7-
/** The horizontal position of the tick; a channel bound to the *x* scale. */
7+
/**
8+
* The horizontal position of the tick; a channel typically bound to the *x*
9+
* scale.
10+
*/
811
x?: ChannelValueSpec;
12+
913
/**
10-
* The vertical position of the tick; an optional categorical channel bound to
11-
* the *y* scale.
14+
* The vertical position of the tick; an optional categorical channel
15+
* typically bound to the *y* scale.
1216
*/
1317
y?: ChannelValueSpec;
1418
}
1519

1620
/** Options for the tickY mark. */
1721
export interface TickYOptions extends MarkOptions, Omit<InsetOptions, "insetTop" | "insetBottom"> {
18-
/** The vertical position of the tick; a channel bound to the *y* scale. */
22+
/**
23+
* The vertical position of the tick; a channel typically bound to the *y*
24+
* scale.
25+
*/
1926
y?: ChannelValueSpec;
27+
2028
/**
21-
* The horizontal position of the tick; an optional categorical channel bound
22-
* to the *x* scale.
29+
* The horizontal position of the tick; an optional categorical channel
30+
* typically bound to the *x* scale.
2331
*/
2432
x?: ChannelValueSpec;
2533
}

0 commit comments

Comments
 (0)