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 54ca574 commit 406007eCopy full SHA for 406007e
src/lib/Plot.svelte
@@ -117,7 +117,7 @@
117
scales,
118
...restProps
119
})}
120
- <svelte:boundary onerror={(err) => console.warn(err)}>
+ <svelte:boundary onerror={(err) => console.error(err)}>
121
<!-- implicit axes -->
122
{#if !hasProjection && !hasExplicitAxisX}
123
{#if options.axes && (options.x.axis === 'top' || options.x.axis === 'both')}
src/lib/helpers/scales.ts
@@ -302,8 +302,6 @@ export function createScale<T extends ScaleOptions>(
302
valueArr.sort(ascending);
303
}
304
305
- console.log({ valueArr, isOrdinal, sortOrdinalDomain });
306
-
307
const valueArray =
308
type === 'quantile' || type === 'quantile-cont' ? allDataValues.toSorted() : valueArr;
309
0 commit comments