gitextract_d23cn4mt/ ├── .editorconfig ├── .eslintrc.json ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ └── ci.yml ├── .gitignore ├── .prettierignore ├── .prettierrc ├── .vscode/ │ └── extensions.json ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── LICENSE ├── NOTES.md ├── README.md ├── angular.json ├── apps/ │ ├── .gitkeep │ ├── dev-server/ │ │ ├── .eslintrc.json │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src/ │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── data/ │ │ │ │ ├── 2d-histogram.ts │ │ │ │ ├── bar.ts │ │ │ │ ├── candlestick.ts │ │ │ │ ├── line-stream.ts │ │ │ │ ├── sankey.ts │ │ │ │ ├── scatter.ts │ │ │ │ └── table.ts │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ └── main.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ ├── web/ │ │ ├── .browserslistrc │ │ ├── .eslintrc.json │ │ ├── jest.config.ts │ │ ├── project.json │ │ ├── src/ │ │ │ ├── app/ │ │ │ │ ├── app-routing.module.ts │ │ │ │ ├── app.module.ts │ │ │ │ ├── components/ │ │ │ │ │ ├── app/ │ │ │ │ │ │ ├── app.component.css │ │ │ │ │ │ ├── app.component.html │ │ │ │ │ │ ├── app.component.spec.ts │ │ │ │ │ │ └── app.component.ts │ │ │ │ │ ├── plot/ │ │ │ │ │ │ ├── plot.component.css │ │ │ │ │ │ ├── plot.component.html │ │ │ │ │ │ └── plot.component.ts │ │ │ │ │ ├── plots/ │ │ │ │ │ │ ├── plots.component.css │ │ │ │ │ │ ├── plots.component.html │ │ │ │ │ │ ├── plots.component.spec.ts │ │ │ │ │ │ └── plots.component.ts │ │ │ │ │ └── tutorial/ │ │ │ │ │ ├── tutorial.component.css │ │ │ │ │ ├── tutorial.component.html │ │ │ │ │ └── tutorial.component.ts │ │ │ │ └── services/ │ │ │ │ ├── plots.service.ts │ │ │ │ └── socket.service.ts │ │ │ ├── assets/ │ │ │ │ └── .gitkeep │ │ │ ├── custom-theme.scss │ │ │ ├── environments/ │ │ │ │ ├── environment.prod.ts │ │ │ │ └── environment.ts │ │ │ ├── index.html │ │ │ ├── main.ts │ │ │ ├── polyfills.ts │ │ │ ├── styles.css │ │ │ └── test-setup.ts │ │ ├── tsconfig.app.json │ │ ├── tsconfig.editor.json │ │ ├── tsconfig.json │ │ └── tsconfig.spec.json │ └── web-e2e/ │ ├── .eslintrc.json │ ├── cypress.json │ ├── project.json │ ├── src/ │ │ ├── fixtures/ │ │ │ └── example.json │ │ ├── integration/ │ │ │ └── app.spec.ts │ │ └── support/ │ │ ├── app.po.ts │ │ ├── commands.ts │ │ └── index.ts │ └── tsconfig.json ├── decorate-angular-cli.js ├── jest.config.ts ├── jest.preset.js ├── libs/ │ └── nodeplotlib/ │ ├── .babelrc │ ├── .eslintrc.json │ ├── README.md │ ├── jest.config.ts │ ├── package.json │ ├── project.json │ ├── src/ │ │ ├── index.ts │ │ └── lib/ │ │ ├── interfaces/ │ │ │ ├── index.ts │ │ │ └── plot.ts │ │ ├── nodeplotlib.ts │ │ ├── server/ │ │ │ ├── plots/ │ │ │ │ ├── plots.gateway.ts │ │ │ │ └── plots.service.ts │ │ │ ├── server.module.ts │ │ │ └── services/ │ │ │ ├── bridge-service.spec.ts │ │ │ └── bridge.service.ts │ │ └── utils/ │ │ ├── get-port.spec.ts │ │ ├── get-port.ts │ │ ├── open-window.spec.ts │ │ └── open-window.ts │ ├── tsconfig.json │ ├── tsconfig.lib.json │ └── tsconfig.spec.json ├── nx.json ├── package.json ├── tools/ │ ├── demo/ │ │ ├── README.md │ │ ├── candlestick.js │ │ ├── scatter.js │ │ ├── scatter.ts │ │ └── stream.ts │ ├── generators/ │ │ └── .gitkeep │ ├── tsconfig.tools.json │ └── util/ │ └── copy-files.ts └── tsconfig.base.json