Line chart doesn't support real time data.
See original GitHub issueI’m submitting a … (check one with “x”)
[ x ] bug report => search github for a similar issue or PR before submitting
[ ] feature request
[ ] support request => Please do not submit support request here
Current behavior The line chart doesn’t support the real-time feature.
Expected behavior The line chart supports the real-time feature.
Please tell us about your environment: OS X 10.12.1
-
ng2d3 version: 1.7.3
-
Angular version: 2.1.0
-
Browser: chrome
-
Language: Typescript 2.0.3
Issue Analytics
- State:
- Created 7 years ago
- Comments:15 (5 by maintainers)
Top Results From Across the Web
Line chart doesn't populate the actual values - Super User
1 Answer 1 · Remove the data label above the date column. · Select the data, including the labels, so the top left...
Read more >Line charts in real-time streaming dataset
Hi, I have an issue with charts in the real-time streaming dataset. It has different representations: so the temperature is smooth, but pressure...
Read more >chart Rest Api data not Updating in real time, - Stack Overflow
First time Loading data correctly, but second time graph doesn't updating the data. It is showing the previous graph data again and again....
Read more >Present your data in a scatter chart or a line chart
Line charts can display continuous data over time, set against a common scale, and are therefore ideal for showing trends in data at...
Read more >Line Chart - Google Developers
A line chart that is rendered within the browser using SVG or VML. ... You can find a list of options that are...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
As stated above, the data must be immutable.
Try this:
data = [...data]
to generate a new data array from the existing one. This will make the component register the change and trigger update.
@marjan-georgiev - we should add a post in docs about this…