├── .gitignore ├── README.md ├── demo ├── index.css ├── index.html ├── index.js ├── package.json └── webpack.config.js ├── dist └── index.js ├── package.json ├── src ├── components │ ├── XAxisSvg │ │ ├── index.jsx │ │ └── util │ │ │ └── constant.js │ ├── chartSvg │ │ ├── SplitLine.jsx │ │ ├── YAxis.jsx │ │ ├── index.jsx │ │ ├── nodes │ │ │ ├── blocking.jsx │ │ │ ├── components │ │ │ │ ├── average.jsx │ │ │ │ ├── error.jsx │ │ │ │ ├── nodeName.jsx │ │ │ │ ├── value.jsx │ │ │ │ └── waitTime.jsx │ │ │ ├── index.jsx │ │ │ ├── index.less │ │ │ └── node.jsx │ │ └── util │ │ │ ├── constant.js │ │ │ └── helper.js │ ├── summarySvg │ │ ├── index.jsx │ │ └── index.less │ └── title │ │ └── index.jsx ├── index.jsx ├── index.less └── util │ └── constant.js └── webpack.config.js /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/README.md -------------------------------------------------------------------------------- /demo/index.css: -------------------------------------------------------------------------------- 1 | 2 | html, body, #root { 3 | height: 100%; 4 | } 5 | -------------------------------------------------------------------------------- /demo/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/demo/index.html -------------------------------------------------------------------------------- /demo/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/demo/index.js -------------------------------------------------------------------------------- /demo/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/demo/package.json -------------------------------------------------------------------------------- /demo/webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/demo/webpack.config.js -------------------------------------------------------------------------------- /dist/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/dist/index.js -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/package.json -------------------------------------------------------------------------------- /src/components/XAxisSvg/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/XAxisSvg/index.jsx -------------------------------------------------------------------------------- /src/components/XAxisSvg/util/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/XAxisSvg/util/constant.js -------------------------------------------------------------------------------- /src/components/chartSvg/SplitLine.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/SplitLine.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/YAxis.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/YAxis.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/index.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/blocking.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/blocking.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/components/average.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/components/average.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/components/error.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/components/error.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/components/nodeName.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/components/nodeName.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/components/value.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/components/value.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/components/waitTime.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/components/waitTime.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/index.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/index.less -------------------------------------------------------------------------------- /src/components/chartSvg/nodes/node.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/nodes/node.jsx -------------------------------------------------------------------------------- /src/components/chartSvg/util/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/util/constant.js -------------------------------------------------------------------------------- /src/components/chartSvg/util/helper.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/chartSvg/util/helper.js -------------------------------------------------------------------------------- /src/components/summarySvg/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/summarySvg/index.jsx -------------------------------------------------------------------------------- /src/components/summarySvg/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/summarySvg/index.less -------------------------------------------------------------------------------- /src/components/title/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/components/title/index.jsx -------------------------------------------------------------------------------- /src/index.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/index.jsx -------------------------------------------------------------------------------- /src/index.less: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/index.less -------------------------------------------------------------------------------- /src/util/constant.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/src/util/constant.js -------------------------------------------------------------------------------- /webpack.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ProtoTeam/time-gantt/HEAD/webpack.config.js --------------------------------------------------------------------------------