All Projects → YellowTugboat → d3-symbol-extra

YellowTugboat / d3-symbol-extra

Licence: BSD-3-Clause license
Additional D3 symbol types.

Programming Languages

javascript
184084 projects - #8 most used programming language

Labels

Projects that are alternatives of or similar to d3-symbol-extra

d3-sankey-circular
A fork of the d3-sankey library to allow circular links.
Stars: ✭ 65 (+306.25%)
Mutual labels:  d3, d3v4
D3 Dot Graph
This module provides D3js compatible library to parse and load files in graphviz DOT (.dot) (graph description language) format.
Stars: ✭ 23 (+43.75%)
Mutual labels:  d3, d3v4
Vue D3 Network
Vue component to graph networks using d3-force
Stars: ✭ 415 (+2493.75%)
Mutual labels:  d3, d3v4
d3-ng2-demo
Reusable visual power? A demo of using D3 version 4 with Angular 2+.
Stars: ✭ 53 (+231.25%)
Mutual labels:  d3, d3v4
D3js doc
D3js中文文档 D3中文 📊 📈 🎉
Stars: ✭ 1,599 (+9893.75%)
Mutual labels:  d3, d3v4
d3.geometer
[NOT MAINTAINED] A D3js library for drawing polytopes, angles, coordinates, geometries and more.
Stars: ✭ 18 (+12.5%)
Mutual labels:  d3, d3v4
D3 Graphviz
Graphviz DOT rendering and animated transitions using D3
Stars: ✭ 901 (+5531.25%)
Mutual labels:  d3, d3v4
Ant Admin
基于 antd 的后台管理平台, 在 react 中玩转 D3.js
Stars: ✭ 455 (+2743.75%)
Mutual labels:  d3, d3v4
D3vue
A D3 Plugin for VueJS
Stars: ✭ 87 (+443.75%)
Mutual labels:  d3, d3v4
D3
This is the repository for my course, Learning Data Visualization with D3.js on LinkedIn Learning and Lynda.com.
Stars: ✭ 64 (+300%)
Mutual labels:  d3, d3v4
k8s-graph
Visualize your Kubernetes (k8s) cluster
Stars: ✭ 23 (+43.75%)
Mutual labels:  d3, d3v4
D3tutorial
📊📈 A D3 v6 tutorial - interactive bar chart and multiple coordinated views (MCV)
Stars: ✭ 163 (+918.75%)
Mutual labels:  d3, d3v4
north-korea-missile-map
A map of the world using D3 and Canvas showing missile ranges
Stars: ✭ 53 (+231.25%)
Mutual labels:  d3, d3v4
multi-verse
lit-element components for fast and modular multivariate analysis
Stars: ✭ 34 (+112.5%)
Mutual labels:  d3, d3v4
multi-chart
lit-element building blocks for charts and visualization (based on d3.js v5)
Stars: ✭ 24 (+50%)
Mutual labels:  d3, d3v4
Scala Js D3v4
ScalaJS facade types for D3 version 5
Stars: ✭ 41 (+156.25%)
Mutual labels:  d3, d3v4
D3 Es6
D3 力导向图 增删改动态更新数据 点击生成节点 拖拽生成连线...
Stars: ✭ 155 (+868.75%)
Mutual labels:  d3, d3v4
V Chart Plugin
Easily bind a chart to the data stored in your Vue.js components.
Stars: ✭ 188 (+1075%)
Mutual labels:  d3, d3v4
Visavail
A D3.js Time Data Availability Visualization
Stars: ✭ 245 (+1431.25%)
Mutual labels:  d3
vue-d3-template
A template project for using Vue with D3.js (easy serve on github.io)
Stars: ✭ 16 (+0%)
Mutual labels:  d3

d3-symbol-extra

Additional D3 symbol types.

For use with D3 version 4+.

Demo

A demo is available here.

Installing

If you use NPM, npm install d3-symbol-extra. Otherwise, download the latest release. AMD, CommonJS, and vanilla environments are supported. In vanilla, a d3 global is exported:

  <script src="https://d3js.org/d3.v4.min.js"></script>
  <script src="d3-symbol-extra.js"></script>

  <svg width="100" height="100"></svg>
  <script>

  var symbol = d3.symbol().size(1000).type(d3.symbolPentagon);
  d3.select('svg').append('path')
    .attr('transform', 'translate(50, 50)')
    .attr('d', function(d, i) {
      return symbol();
    });

  </script>

API Reference

Symbols

# d3.symbolTriangleDown <>

The triangle symbol type rotated 180°. See d3.symbolTriangle.

# d3.symbolTriangleLeft <>

The triangle symbol type rotated 90° counterclockwise. See d3.symbolTriangle.

# d3.symbolTriangleRight <>

The triangle symbol type rotated 90° clockwise. See d3.symbolTriangle.

# d3.symbolDiamondAlt <>

The diamond symbol type laid horizontally. See d3.symbolDiamond.

# d3.symbolDiamondSquare <>

The square symbol type rotated 45°. See d3.symbolSquare.

# d3.symbolPentagon <>

The pentagon symbol type.

# d3.symbolHexagon <>

The hexagon symbol type.

# d3.symbolHexagonAlt <>

The hexagon symbol type rotated to have horizontal top and bottom edges.

# d3.symbolOctagon <>

The octagon symbol type.

# d3.symbolOctagonAlt <>

The octagon symbol type rotated to have horizontal top and bottom edges.

# d3.symbolX <>

The Greek cross symbol type rotated 45°. Alias: d3.symbolCrossAlt. See d3.symbolCross.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].