d3-selection icon indicating copy to clipboard operation
d3-selection copied to clipboard

Transform the DOM by selecting elements and joining to data.

Results 12 d3-selection issues
Sort by recently updated
recently updated
newest added

Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. Release notes Sourced from word-wrap's releases. 1.2.4 What's Changed Remove default indent by @​mohd-akram in jonschlinkert/word-wrap#24 🔒fix: CVE 2023 26115 (2) by @​OlafConijn in...

dependencies

Bumps [semver](https://github.com/npm/node-semver) from 7.3.5 to 7.5.4. Release notes Sourced from semver's releases. v7.5.4 7.5.4 (2023-07-07) Bug Fixes cc6fde2 #588 trim each range set before parsing (@​lukekarrys) 99d8287 #583 correctly parse...

dependencies

Bumps [tough-cookie](https://github.com/salesforce/tough-cookie) from 4.0.0 to 4.1.3. Release notes Sourced from tough-cookie's releases. 4.1.3 Security fix for Prototype Pollution discovery in #282. This is a minor release, although output from the...

dependencies

I would like to propose a utility for memoization that works well in conjunction with D3. The purpose of this is for performance optimization in contexts where a function that...

Bumps [terser](https://github.com/terser/terser) from 5.7.0 to 5.14.2. Changelog Sourced from terser's changelog. v5.14.2 Security fix for RegExps that should not be evaluated (regexp DDOS) Source maps improvements (#1211) Performance improvements in...

dependencies

What if this ```js svg.append("g") .appendAll("rect", data) ``` were shorthand for this ```js svg.append("g") .selectAll() .data(data) .enter() .append("rect") ``` The latter is a common special case of the data-join, and...

enhancement

related: #296 ; https://github.com/observablehq/plot/pull/645

Is this working?

Shorthand for inserting a new element around the current element.

One of the surprising things about the data join is that you have to recompute a new key for the existing elements. It’d be nice if we stashed the key...