score:0
I understand you want to update view with new fresh json data every xx ms in summary you need to :
- have a service which exposes a shared observable, say data$;
- the service has the method to fetch the remote data and update the shared observable above, say getRemoteData()
- that service Observable.interval() which calls the method to fetch the remote data
- have your component that displays the data
- have the component subscribe to the data observable from the service.
the next sample code illustrates how to implement it
import {takeWhile, first} from 'rxjs/operators';
import { Component, OnInit } from '@angular/core';
import { interval } from "rxjs";
import { PositionsModel } from "./positionsmodel";
import { MouvementService } from './mouvement.service';
@Component({
selector: 'app-mouvementview',
template: '<div *ngIf="data"> your chart </div>',
})
export class MouvementviewComponent implements OnInit {
public data: PositionsModel;
private display: boolean; // whether to display info in the component
// use *ngIf="display" in your html to take
// advantage of this
private alive: boolean; // used to unsubscribe from the IntervalObservable
// when OnDestroy is called.
results : string;
// Inject mouvementService
constructor(private mouvementService: MouvementService) {
this.display = false;
}
ngOnInit() {
this.mouvementService.getPositions().pipe(
first()) // only gets fired once
.subscribe((data) => {
this.data = data;
this.display = true;
this.alive = true;
});
// get our data every subsequent 200 mseconds
interval(200).pipe(
takeWhile(() => this.alive)) // only fires when component is alive
.subscribe(() => {
this.mouvementService.getPositions()
.subscribe(data => {
console.log(data);
this.data = data;
});
});
}
ngOnDestroy(){
this.alive = false; // switches your IntervalObservable off
}
}
score:0
You can use Chart.js's addData()
function with a setTimeout method for this.
<!DOCTYPE html>
<html>
<head>
<title>Add data</title>
<script src = "https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.7.3/Chart.js"></script>
</head>
<body>
<div class = "container">
<canvas id="myChart"></canvas>
</div>
<script src = "script.js"></script>
</body>
</html>
script.js
let ctx = document.getElementById("myChart").getContext('2d');
let myChart = new Chart(ctx, {
type: 'line',
data: {
labels: ["Red", "Blue", "Yellow", "Green", "Purple", "Orange"],
datasets: [{
label: '# of Votes',
data: [7, 9, 3, 5, 2, 3],
backgroundColor: [
'rgba(255, 99, 132, 0.2)',
'rgba(54, 162, 235, 0.2)',
'rgba(255, 206, 86, 0.2)',
'rgba(75, 192, 192, 0.2)',
'rgba(153, 102, 255, 0.2)',
'rgba(255, 159, 64, 0.2)'
],
borderColor: [
'rgba(255,99,132,1)',
'rgba(54, 162, 235, 1)',
'rgba(255, 206, 86, 1)',
'rgba(75, 192, 192, 1)',
'rgba(153, 102, 255, 1)',
'rgba(255, 159, 64, 1)'
],
borderWidth: 1
}]
},
options: {
scales: {
yAxes: [{
ticks: {
beginAtZero:true
}
}]
}
}
});
setTimeout(function() {
addData(myChart, "White", 7);
},3000);
function addData(chart, label, data) {
console.log(console.log(chart.data.datasets[0].data));
chart.data.labels.push(label);
chart.data.datasets[0].data.push(data);
chart.update();
}
Hope this could be helpful. You can change setTimeout to setInterval if you prefer adding data to the chart in intervals (such as every 2 secs).
score:2
test_data = {
'1222': {
joy: 66.5057373046875,
fear: 1.0003513832343742,
anger: 2.000018799044483,
disgust: 3.004251452162862,
sadness: 4.0001135088386945,
contempt: 5.001299204188399,
surprise: 6.203749045729637
},
'2238': {
joy: 97.06363677978516,
fear: 17.500137131541123,
anger: 27.00000593749519,
disgust: 6.001324078417383,
sadness: 21.000043172625737,
contempt: 21.00033742573578,
surprise: 32.62530106306076
},
'3722': {
joy: 66.5057373046875,
fear: 60.000351383234374,
anger: 70.00001879904448,
disgust: 10.004251452162862,
sadness: 92.0001135088387,
contempt: 40.0012992041884,
surprise: 50.20374904572964
},
'4838': {
joy: 97.06363677978516,
fear: 15.000137131541123,
anger: 64.50000593749519,
disgust: 24.501324078417383,
sadness: 31.500043172625737,
contempt: 18.50033742573578,
surprise: 6.2048268765211105
},
'5722': {
joy: 66.5057373046875,
fear: 54.000351383234374,
anger: 72.00001879904448,
disgust: 0.004251452162861824,
sadness: 80.0001135088387,
contempt: 20.0012992041884,
surprise: 20.203749045729637
},
'6838': {
joy: 95.37223815917969,
fear: 41.000168004859006,
anger: 62.00000752212509,
disgust: 33.001674098544754,
sadness: 3.000052563053032,
contempt: 44.00044780407916,
surprise: 4.204549819231033
},
'7839': {
joy: 98.75503540039062,
fear: 1.0001062582232407,
anger: 1.0000043528652895,
disgust: 1.0009740582900122,
sadness: 2.000033782198443,
contempt: 2.0002270473924,
surprise: 1.2051039338111877
}
};
var arr = Object.entries(test_data)
var options = {
type: 'line',
data: {
labels: ["joy", "fear", "anger", "disgust", "sadness", "contempt", "surprise"],
datasets: []
},
options: {
scales: {
yAxes: [{
ticks: {
reverse: false
}
}]
}
}
}
var ctx = document.getElementById('chartJSContainer').getContext('2d');
var myC = new Chart(ctx, options);
arr.forEach((v) => {
setTimeout(() => {
myC.data.datasets.push({
data: [v[1].joy, v[1].fear, v[1].anger, v[1].disgust, v[1].sadness, v[1].contempt, v[1].surprise],
label: "#" + v[0] + "Milisec"
});
myC.update()
}, parseInt(v[0]))
})
canvas { background-color : #eee;
}
<script src="https://cdnjs.cloudflare.com/ajax/libs/Chart.js/2.4.0/Chart.min.js"></script>
<body>
<canvas id="chartJSContainer" width="600" height="400"></canvas>
</body>
Source: stackoverflow.com
Related Query
- Show data dynamically in line chart - ChartJS
- ChartJS (React) Line Chart - How to show single tooltip with data and labels from 3 (multiple) dataset?
- Chartjs random colors for each part of pie chart with data dynamically from database
- show label in tooltip but not in x axis for chartjs line chart
- chartjs show dot point on hover over line chart
- ChartJs line chart - display permanent icon above some data points with text on hover
- How to dynamically set ChartJs line chart width based on dataset size?
- How to show data values in top of bar chart and line chart in chart.js 3
- chartjs show 24 hours in line chart
- assigning line chart data in chartjs
- ChartJS 2.9.4 can't overlay line data on Horizontal Bar chart
- How to show the chartjs bar chart data values labels as text?
- Real-time line chart with ChartJS using Ajax data
- ChartJS dynamic line chart ghosting back to old data when hovered on
- dynamically update Chart.js draw line chart dataset data
- How to add data dynamically to primevue Line chart from vuejs3?
- Dynamically loaded chart data not showing Chartjs React
- How to start the chart from specific time and offest hour and then show the data on chart from target datetime in chartjs
- How to dynamically update data of line chart used with chart Js?
- Show label for every data point in line chart
- How to bind data from Controler to chartjs line chart to create it as dynamic?
- Add data to line chart js dynamically with multiple lines
- Chartjs sample line chart setup doesn't show dataLabels
- Show and plot zero values on ChartJS line graph when no data
- Dynamically update values of a chartjs chart
- Chartjs Bar Chart showing old data when hovering
- ChartJS - Draw chart with label by month, data by day
- line chart with {x, y} point data displays only 2 values
- Chart.js how to show cursor pointer for labels & legends in line chart
- Display line chart with connected dots using chartJS
More Query from same tag
- Chart.js how to display multiple labels on multi bar stacked chart
- Chart.js updating data
- multiple charts js in page but with same tooltips (about last chart)
- How to get ChartJs object from dynamically created chart
- chart.js - user add the final point of the line
- Chart JS 2 Tick Label Border
- How to use Chart.js to draw solid points
- Different amount of label and data in Chart.js
- Cannot use ng2-charts with Ionic 3 (ionic-angular 3.9.4)
- Hide chart labels
- Change data onclick with ChartJS
- First implementation - Chart object seems to be incomplete
- How to sum/divide array values in chart.js?
- Chart.JS - multiple - box - annotations - displays only the last box
- Building Multiple Charts Using Chart JS in an Angular Application
- Chart.js - Responsiveness not correctly working on device orientation change
- How to use chartjs-plugin-trendline with react-chartjs-2
- Rendering Chart.js Bubble Chart Using Array Data
- Resizing vue-chartjs height while keeping it responsive
- How To Add Center-Text in Donut Chart Js
- Is it possible to display values where the display ends instead of on top of the points with chartjs?
- Chart options in angularJs (NodeRed Charts)
- Chartjs - Stacked bar chart blocking other values
- ng2-charts: Datalabels values are not shown in my grapghs
- Custom y axle using Chart.js
- Chart JS: Use function in tooltip template
- chart js - Apply different color for each x-axes label
- Chart.js - Setting x-axis based on user input
- How to display "%" sign on mouse hover in Pie-Chart
- chartjs resizing very quickly (flickering) on mouseover