Preencher dinamicamente o gráfico ng2 no Angular 4
Eu escrevi um aplicativo de amostra para buscar dados do serviço no formato json e vinculá-lo ao gráfico na interface do usuári
O problema é que sempre que tento vincular os dados, isso não acontece. Tentei de várias maneiras vincular dados, mas não obtive sucess
funcionalidade @ é a seguinte: Página 1: contém 2 caixas suspensas. 1 com o tipo de gráfico e 2 com o tipo de amostra. Na seleção dos dois valores suspensos, clico em um botão que aciona uma função fetchData () no GlobalService.
Below é getter & setter no GlobalService
getChartData() {
return this.chartData;
}
setChartData(response: any) {
this.chartData = response.data;
// console.log(this.chartData);
}
getChartlabel() {
return this.chartLabel;
}
setChartLabel(response: any) {
this.chartLabel = response.label.label;
// console.log(this.chartLabel);
}
getResponse() {
return this.response;
}
setResponse(response: any) {
this.response = response;
// console.log(response);
}
e a função é assim
fetchData(chart: any, sample: any) {
console.log();
const request = {
chartType: this.selectedChart, // 'BAR | LINE'
sampleType: this.selectedSample // 'COUNT'
};
this.http.post('http://localhost:22222/school/getData', request, this.options)
.subscribe(
res => {
res = res.json();
const responseData = res;
console.log(responseData);
if (responseData.hasOwnProperty('data')) {
console.log('Data Fetched');
this.setResponse(responseData); // Setting response
this.setChartData(responseData); // setting data
this.setChartLabel(responseData); // setting label
this.router.navigate(['/gotoChartPage']); // navigating to next page chart.html
} else {
alert('Data Fetch Failed');
}
});
}
Agora meu chart.html se parece com isso, conforme mencionado emAqu
<div id='barDiv' class="onerow" *ngIf="1">
<h4 class="m-2">Bar Chart</h4>
<div style="display: block">
<canvas baseChart width="800" height="500"
[datasets]="barChartData" // --> This is where i want to update Data
[labels]="barChartLabels" // --> This is where i want to update Labels
[options]="barChartOptions"
[legend]="barChartLegend"
[chartType]="barChartType">
</canvas>
</div>
Então, meu Chart.component é o seguinte
/*******************BAR CHART*********************************/
public barChartOptions: any = {
scaleShowVerticalLines: false,
responsive: true
};
public barChartLabels: Array<any> = []; // ["STD 1", "STD 2", "STD 3", "STD 4", "STD 5", "STD 6", "STD 7", "STD 8", "STD 9", "STD 10"]; Sample Data
public barChartType = 'bar';
public barChartLegend = true;
public barChartData: any[] = []; // [ {'data': [40, 32, 42, 23, 43, 35, 50, 48, 37, 45], label: 'COUNT'}]; -- Sample Data
constructor(private global: GlobalService) {
this.barChartData = this.global.chartData;
this.barChartLabels = this.global.chartLabel;
}
Minha resposta de json vem neste formato:
Para conjuntos de dados únicos:
{
"data":
{"data": [40,32,42,23,43,35,50,48,37,45], "label":"COUNT"},
"label":
{"label":["STD 1","STD 2","STD 3","STD 4","STD 5","STD 6","STD 7","STD 8","STD 9","STD 10"]}
}
Para vários dataSets:
{
"data":
{"data": [40,32,42,23,43,35,50,48,37,45], "label":"MVM"},
{"data": [04,03,02,03,03,05,50,80,07,45], "label":"HVD"},
{"data": [20,32,42,23,43,60,50,48,70,40], "label":"BMS"},
"label":
{"label":["STD 1","STD 2","STD 3","STD 4","STD 5","STD 6","STD 7","STD 8","STD 9","STD 10"]}
}
Quando tento atribuir dessa maneira, o gráfico não aparece. Mas se eu codificar os valores em barChartLabels e barChartData, os gráficos serão exibidos.
Eu também tentei dessa maneira
`<canvas baseChart width="800" height="500"
[datasets]="global.chartData" // --> This is where I need to update Data
[labels]="global.chartLabel" // --> This is where I need to update Labels
[options]="barChartOptions"
[legend]="barChartLegend"
[chartType]="barChartType">
</canvas>`
Ajuda é apreciada. Estou preso a isso por mais do que meu cérebro pode imagina
Me deparei com este exemplo na pilha:CLIQU & CLIQU Mas, não é a maneira correta de faze
Estou me perguntando por que os dados não são vinculados diretamente aos gráficos como este
[datasets]="global.chartData" // --> This is where I need to update Data
[labels]="global.chartLabel"