We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 40e56a9 commit 3cfcd21Copy full SHA for 3cfcd21
src/transforms/stack.js
@@ -14,7 +14,7 @@ export function stackX(stackOptions = {}, options = {}) {
14
export function stackX1(stackOptions = {}, options = {}) {
15
if (arguments.length === 1) [stackOptions, options] = mergeOptions(stackOptions);
16
const {y1, y = y1, x} = options;
17
- const [transform, Y, X] = stack(y, x, "x", "y", stackOptions, options);
+ const [transform, Y, X] = stack(y, x, "y", "x", stackOptions, options);
18
return {...transform, y1, y: Y, x: X};
19
}
20
0 commit comments