{"id":17450428,"url":"https://github.com/jkuri/ngx-realtime-chart","last_synced_at":"2026-05-08T02:05:46.148Z","repository":{"id":211611411,"uuid":"726923550","full_name":"jkuri/ngx-realtime-chart","owner":"jkuri","description":"Library designed for live streaming data in Angular applications.","archived":false,"fork":false,"pushed_at":"2024-02-26T09:55:01.000Z","size":202,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":2,"default_branch":"main","last_synced_at":"2025-02-12T02:03:53.404Z","etag":null,"topics":["angular","chart","d3","real-time","realtime-chart"],"latest_commit_sha":null,"homepage":"https://ngx-realtime-chart.vercel.app","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/jkuri.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE.md","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2023-12-03T19:45:47.000Z","updated_at":"2023-12-09T16:11:48.000Z","dependencies_parsed_at":"2023-12-09T18:25:08.344Z","dependency_job_id":"87d911bf-94d6-4d30-9955-d0cfeb51f6a2","html_url":"https://github.com/jkuri/ngx-realtime-chart","commit_stats":{"total_commits":15,"total_committers":1,"mean_commits":15.0,"dds":0.0,"last_synced_commit":"fdef0aa63f8f9db43187de21f27efaa9913f4450"},"previous_names":["jkuri/ngx-realtime-chart"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkuri%2Fngx-realtime-chart","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkuri%2Fngx-realtime-chart/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkuri%2Fngx-realtime-chart/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/jkuri%2Fngx-realtime-chart/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/jkuri","download_url":"https://codeload.github.com/jkuri/ngx-realtime-chart/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":240136995,"owners_count":19753650,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["angular","chart","d3","real-time","realtime-chart"],"created_at":"2024-10-17T22:17:39.951Z","updated_at":"2025-11-12T02:31:54.249Z","avatar_url":"https://github.com/jkuri.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Angular Realtime Chart\n\n_ngx-realtime-chart_ is a small library designed for live streaming data in Angular applications.\n\n---\n\nSee StackBlitz [demo](https://stackblitz.com/edit/ngx-realtime-chart?file=src%2Fmain.ts)\n\n## Installation\n\n```sh\nnpm install ngx-realtime-chart\n```\n\n## Usage\n\nImport the NgxRealtimeChartModule into your AppModule:\n\n```ts\nimport { NgxRealtimeChartModule } from 'ngx-realtime-chart';\n\n@NgModule({\n  imports: [NgxRealtimeChartModule]\n})\nexport class AppModule {}\n```\n\nExample with standalone component and simple configuration:\n\n```ts\nimport { NgxRealtimeChartComponent, RealtimeChartData, RealtimeChartOptions } from 'ngx-realtime-chart';\n\n@Component({\n  selector: 'app-root',\n  standalone: true,\n  imports: [CommonModule, NgxRealtimeChartComponent],\n  template: `\u003cngx-realtime-chart [options]=\"options\" [data]=\"data\" /\u003e`\n})\nexport class AppComponent implements {\n  color = '#09090B';\n  timeSlots = 60;\n  options: RealtimeChartOptions = {\n    height: 200,\n    margin: { left: 40, top: 20, bottom: 30, right: 10 },\n    fps: 30,\n    timeSlots: this.timeSlots,\n    xGrid: {\n      tickPadding: 15,\n      tickNumber: 10,\n      tickFontSize: 10,\n      tickFontWeight: 'normal',\n      tickFontColor: this.color,\n      color: this.color,\n      opacity: 0.05\n    },\n    yGrid: {\n      min: 0,\n      max: 100,\n      color: this.color,\n      opacity: 0.05,\n      tickNumber: 4,\n      tickFormat: (v: string | number) =\u003e `${v}%`,\n      tickPadding: 20,\n      tickFontWeight: 'normal',\n      tickFontColor: this.color,\n      tickFontSize: 10\n    },\n    lines: [\n      {\n        color: this.color,\n        lineWidth: 2,\n        opacity: 1,\n        area: true,\n        areaColor: this.color,\n        areaOpacity: 0.02,\n        curve: 'basis'\n      }\n    ]\n  };\n  data: RealtimeChartData[][] = [[]];\n}\n```\n\n## License\n\n```text\nMIT License\n\nCopyright (c) 2023 Jan Kuri \u003cjkuri88@gmail.com\u003e\n\nPermission is hereby granted, free of charge, to any person obtaining a copy\nof this software and associated documentation files (the \"Software\"), to deal\nin the Software without restriction, including without limitation the rights\nto use, copy, modify, merge, publish, distribute, sublicense, and/or sell\ncopies of the Software, and to permit persons to whom the Software is\nfurnished to do so, subject to the following conditions:\n\nThe above copyright notice and this permission notice shall be included in all\ncopies or substantial portions of the Software.\n\nTHE SOFTWARE IS PROVIDED \"AS IS\", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR\nIMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,\nFITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE\nAUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER\nLIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,\nOUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE\nSOFTWARE.\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkuri%2Fngx-realtime-chart","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fjkuri%2Fngx-realtime-chart","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fjkuri%2Fngx-realtime-chart/lists"}