d3

WebJar for d3

Лицензия

Лицензия

BSD 3-Clause
Группа

Группа

org.webjars.bower
Идентификатор

Идентификатор

d3
Последняя версия

Последняя версия

5.15.0
Дата

Дата

Тип

Тип

jar
Описание

Описание

d3
WebJar for d3
Ссылка на сайт

Ссылка на сайт

https://www.webjars.org
Система контроля версий

Система контроля версий

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

Скачать d3

Имя Файла Размер
d3-5.15.0.pom
d3-5.15.0.jar 202 KB
d3-5.15.0-sources.jar 22 bytes
d3-5.15.0-javadoc.jar 22 bytes
Обзор

Как подключить последнюю версию

<!-- 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"]

Зависимости

Библиотека не имеет зависимостей. Это самодостаточное приложение, которое не зависит ни от каких других библиотек.

Модули Проекта

Данный проект не имеет модулей.

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.

Версии библиотеки

Версия
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