Security News
Node.js EOL Versions CVE Dubbed the "Worst CVE of the Year" by Security Experts
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Attach arrowheads to SVG elements. This module is in alpha, so use with caution.
If you use NPM, npm install d3-arrow
. Otherwise, download the latest release. AMD, CommonJS, and vanilla environments are supported. In vanilla, a d3 global is exported:
<script src="https://unpkg.com/d3-arrow@0.0.25/dist/d3-arrow.min.js"></script>
<script>
const arrow = d3.arrow1();
</script>
The API is based on the list of arrows in Adobe Illustrator v24.1.2. To add an arrowhead to an SVG element, you must first add the arrowhead generator to your SVG using selection.call. Then, pass the generator's id to the element's "marker-end" attribute:
const svg = d3.select("body").append("svg")
.attr("width", 60)
.attr("height", 20);
const arrow = d3.arrow1()
.id("my-arrow")
.attr("fill", "steelblue")
.attr("stroke", "steelblue");
svg.call(arrow);
svg.append("polyline")
.attr("marker-end", "url(#my-arrow)")
.attr("points", [[5, 10], [55, 10]])
.attr("stroke", "steelblue")
.attr("stroke-width", 2);
# d3.arrow1() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-1" and a scale of 1.
# d3.arrow2() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-2" and a scale of 1.
# d3.arrow3() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-3" and a scale of 1.
# d3.arrow5() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-5" and a scale of 1.
# d3.arrow10() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-10" and a scale of 1.
# d3.arrow11() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-11" and a scale of 1.
# d3.arrow13() · Source, Example
Creates a new arrow generator with an id of "d3-arrow-13" and a scale of 1.
# arrow(context) · Source, Example
Add the arrow generator to the given context, which should be a selection of SVG elements.
# arrow.id([id]) · Source, Example
Sets or gets the arrow's unique id string, which you'll reference when setting the element's "marker-end" attribute.
# arrow.scale([scale]) · Source, Example
Sets or gets the arrow's scale number.
# arrow.attr(key[, value]) · Source, Example
Sets or gets an appearance attribute's value.
FAQs
Attach arrowheads to SVG elements.
The npm package d3-arrow receives a total of 87 weekly downloads. As such, d3-arrow popularity was classified as not popular.
We found that d3-arrow demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Critics call the Node.js EOL CVE a misuse of the system, sparking debate over CVE standards and the growing noise in vulnerability databases.
Security News
cURL and Go security teams are publicly rejecting CVSS as flawed for assessing vulnerabilities and are calling for more accurate, context-aware approaches.
Security News
Bun 1.2 enhances its JavaScript runtime with 90% Node.js compatibility, built-in S3 and Postgres support, HTML Imports, and faster, cloud-first performance.