0.1.0 • Published 5 years ago

flowchart.svg v0.1.0

Weekly downloads
3
License
MIT
Repository
github
Last release
5 years ago

flowchart.svg

NPM Version

NPM Badge

Install

$ git clone https://github.com/wanderBee/flowchart.svg
$ yarn

build

$ yarn build

Load

HTML

<script src="https://cdn.jsdelivr.net/npm/flowchart.svg@0.1.0/dist/flowchartSvg.min.js"></script>

ES6

import FlowchartSvg from "flowchart.svg";

usage

dependencies

snap.svg

in your file

var svg = FlowchartSvg.init("#flow");
svg.setOption({
  // type: 'polar', // 默认值'polar'
  r: 22, // polar图的圆半径
  data: [
    {
      source: "开始",
      target: "中间",
      value: "a>5"
    },
    {
      source: "中间",
      target: "结束",
      value: "b>0"
    }
  ],
  style: {
    color: "#6c89d5"
  }
});

License

MIT