Mike Bostock

Results 344 issues of Mike Bostock

There are a handful of libraries that are currently internally defined, but we should publish them to npm so that they don’t need to be treated specially. These are: -...

enhancement

When jsDelivr fails to bundle a package, it appears to succeed, but the code is replaced with: ```js /** * Failed to bundle using Rollup v2.79.1: the file imports a...

enhancement

We translate static imports to dynamic imports, but this should error rather than resolve to `undefined`: ```js import {doesNotExist} from "./module.js"; ```

bug

The search index is cached for up to 10 minutes and doesn’t check whether pages have been edited since the last index if you’ve specified the **pages** config option. (If...

bug

I have a set of plots (effectively small multiples) but they are generated with separate instances of Plot.plot. These plots have a tip, and I would like to ensure that...

enhancement

```js plot.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns", "http://www.w3.org/2000/svg"); plot.setAttributeNS("http://www.w3.org/2000/xmlns/", "xmlns:xlink", "http://www.w3.org/1999/xlink"); ```

enhancement

For hovering a multi-series line chart, we don’t want to just highlight the current point; we want the highlight the entire line. I expect it’d be pretty easy to extend...

enhancement

The crosshair mark uses the pointer transform to snap to the data, but it’d be nice to also support a continuous mode that inverted the x and y scales instead.

enhancement

Ref. https://github.com/observablehq/plot/pull/2155#pullrequestreview-2266406998 Note that in the case of DuckDB-Wasm, we default `config.query.castBigIntToDouble` to true, so we shouldn’t see BigInt in practice with DuckDB, but we might still see it when...