d3

WebJar for d3

License

License

BSD 3-Clause
GroupId

GroupId

org.webjars.bower
ArtifactId

ArtifactId

d3
Last Version

Last Version

5.15.0
Release Date

Release Date

Type

Type

jar
Description

Description

d3
WebJar for d3
Project URL

Project URL

https://www.webjars.org
Source Code Management

Source Code Management

https://github.com/mbostock-bower/d3-bower

Download d3

How to add to project

<!-- https://jarcasting.com/artifacts/org.webjars.bower/d3/ -->
<dependency>
    <groupId>org.webjars.bower</groupId>
    <artifactId>d3</artifactId>
    <version>5.15.0</version>
</dependency>
// https://jarcasting.com/artifacts/org.webjars.bower/d3/
implementation 'org.webjars.bower:d3:5.15.0'
// https://jarcasting.com/artifacts/org.webjars.bower/d3/
implementation ("org.webjars.bower:d3:5.15.0")
'org.webjars.bower:d3:jar:5.15.0'
<dependency org="org.webjars.bower" name="d3" rev="5.15.0">
  <artifact name="d3" type="jar" />
</dependency>
@Grapes(
@Grab(group='org.webjars.bower', module='d3', version='5.15.0')
)
libraryDependencies += "org.webjars.bower" % "d3" % "5.15.0"
[org.webjars.bower/d3 "5.15.0"]

Dependencies

There are no dependencies for this project. It is a standalone project that does not depend on any other jars.

Project Modules

There are no modules declared in this project.

D3: Data-Driven Documents

D3 (or D3.js) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML. D3 combines powerful visualization and interaction techniques with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers and the freedom to design the right visual interface for your data.

Resources

Installing

If you use npm, npm install d3. Otherwise, download the latest release. The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from d3js.org, CDNJS, or unpkg. For example:

<script src="https://d3js.org/d3.v5.js"></script>

For the minified version:

<script src="https://d3js.org/d3.v5.min.js"></script>

You can also use the standalone D3 microlibraries. For example, d3-selection:

<script src="https://d3js.org/d3-selection.v1.js"></script>

D3 is written using ES2015 modules. Create a custom bundle using Rollup, Webpack, or your preferred bundler. To import D3 into an ES2015 application, either import specific symbols from specific D3 modules:

import {scaleLinear} from "d3-scale";

Or import everything into a namespace (here, d3):

import * as d3 from "d3";

In Node:

var d3 = require("d3");

You can also require individual modules and combine them into a d3 object using Object.assign:

var d3 = Object.assign({}, require("d3-format"), require("d3-geo"), require("d3-geo-projection"));
org.webjars.bower
Bower needs generated files in git. Bower gets generated files in git.

Versions

Version
5.15.0
5.7.0
5.5.0
5.1.0
5.0.0
5.0.0-rc.4
4.12.0
4.10.2
4.9.1
4.7.4
4.7.3
4.6.0
4.5.0
4.4.4
4.4.1
4.4.0
4.3.0
4.2.8
4.2.6
4.2.5
4.2.4
4.2.3
4.2.2
4.2.1
4.1.1
3.5.17
3.5.16
3.5.14
3.5.13
3.5.12
3.5.10
3.5.9
3.5.6
3.5.5
3.5.4
3.5.3
3.5.0
3.4.13
3.4.1
3.3.13
3.3.9
3.0.8