All Projects → supervergil → d3-metro

supervergil / d3-metro

Licence: other
d3 based metro engine

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects

Labels

Projects that are alternatives of or similar to d3-metro

familytreesea
在线家谱世系图
Stars: ✭ 34 (+112.5%)
Mutual labels:  d3
svelte-mindmap
Svelte component for MindMap
Stars: ✭ 122 (+662.5%)
Mutual labels:  d3
d3-stencil
Charts built with D3 and Stencil. Framework-agnostic, simple.
Stars: ✭ 65 (+306.25%)
Mutual labels:  d3
d3-symbol-extra
Additional D3 symbol types.
Stars: ✭ 16 (+0%)
Mutual labels:  d3
uck
숫자 -> 한글 단위 변환 모듈
Stars: ✭ 27 (+68.75%)
Mutual labels:  d3
daily ui
#dailyui exercises
Stars: ✭ 16 (+0%)
Mutual labels:  d3
d3-axis-for-react
d3-axis for React
Stars: ✭ 63 (+293.75%)
Mutual labels:  d3
lineage
Family Tree Data Expression Engine
Stars: ✭ 90 (+462.5%)
Mutual labels:  d3
you-draw-it
Datenjournalismus: Nutzer können schätzen, wie sich Statistiken verändert haben und ihre Einschätzung danach überprüfen.
Stars: ✭ 24 (+50%)
Mutual labels:  d3
p101s2.github.io
Interactive Ranking Chart for Mnet's Produce 101 Season 2
Stars: ✭ 23 (+43.75%)
Mutual labels:  d3
datahub
Datahub v2
Stars: ✭ 16 (+0%)
Mutual labels:  d3
mastering-d3
Code examples for the book Mastering D3.js, published in August 2014 by Packt Publishing.
Stars: ✭ 56 (+250%)
Mutual labels:  d3
qvisualisation
Visualisation toolbox based on Qt WebEngine and D3.js
Stars: ✭ 25 (+56.25%)
Mutual labels:  d3
VAE-Latent-Space-Explorer
Interactive exploration of MNIST variational autoencoder latent space with React and tensorflow.js.
Stars: ✭ 30 (+87.5%)
Mutual labels:  d3
dashblocks-template
Dashblocks Vue Material Admin Template
Stars: ✭ 143 (+793.75%)
Mutual labels:  d3
labs-migration-viz
A single-page interactive visualization of historic U.S. Census migration data for New York City
Stars: ✭ 18 (+12.5%)
Mutual labels:  d3
d3-spiral-heatmap
A reusable chart for D3 (version 4) to create a spiral heatmap
Stars: ✭ 30 (+87.5%)
Mutual labels:  d3
multi-chart
lit-element building blocks for charts and visualization (based on d3.js v5)
Stars: ✭ 24 (+50%)
Mutual labels:  d3
d3-geomap
A library for creating geographical maps based on D3.js
Stars: ✭ 124 (+675%)
Mutual labels:  d3
R-and-D3
Code examples referenced on CodeMine Blog
Stars: ✭ 16 (+0%)
Mutual labels:  d3

What does this library do

For Generating Metro Map Easier.

How To Use

use npm

npm install d3-metro
<svg id="app" width="100%" height="100%" style="margin: 0;padding: 0;cursor: move"></svg>
import Metro from 'd3-metro';

const metro = new Metro({
  id: '#app',
  origin: {
    width: 3840,
    height: 2160
  },
  data: testData
});

use script tag (see example dir)

<script src="path/to/metro.js"></script>

<svg id="app" width="100%" height="100%" style="margin: 0;padding: 0;cursor: move"></svg>

<script>
  var metro = new Metro({
    id: '#app',
    origin: {
      width: 3840,
      height: 2160
    },
    data: testData
  })
</script>

note: see testData structure in /example/data.js

see mechanism:https://www.zhangyangjun.com/post/use-svg-draw-metro-basic.html

中文文档

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].