J'ai un diagramme à barres construit avec amcharts . J'ai construit le graphique à barres empilées en suivant cet exemple .
J'essaie de modifier l'alpha (ou la couleur) d'une boîte si je passe au-dessus d'un autre élément de ma page (par exemple un tableau). Par exemple, je voudrais changer l'alpha (ou la couleur) de la boîte pour (2003, Europe) si un utilisateur survole la cellule correspondante du tableau quelque part sur ma page.
J'ai placé mon graphique dans un composant angulaire 6 mais je suppose que cela n'a pas vraiment d'importance tant que je capture correctement les événements de changement d'entrée.
EDIT 1.
J'ai encore du mal à naviguer dans les objets. J'ai construit un diagramme à barres et il semble correct.
createSeries(field, name) {
var series = this.chart.series.push(new am4charts.ColumnSeries());
series.name = name;
series.dataFields.valueY = field;
series.dataFields.categoryX = "country";
series.sequencedInterpolation = true;
series.columns.template.fillOpacity = 0.5
// Make it stacked
series.stacked = true;
// Configure columns
series.columns.template.width = am4core.percent(60);
series.columns.template.tooltipText = "[bold]{name}[/]\n[font-size:14px]{categoryX}: {valueY}";
console.log(series)
return series
}
J'ai ensuite des séries de quatre colonnes, une pour chaque champ de mes données. Je peux granuler les séries par champ.
grabBar(country, field) {
// If you don't have access to the chart code in your angular scope,
// use am4core global.
// no reason to loop through ALL series/columns, just whipped this up quick
let foundBar: am4charts.XYSeries | null;
this.chart.series.each(series => {
if (series.dataFields.categoryY == field) {
console.log("yay")
series.dataItems.values
}
});
return foundBar;
mais je n'arrive pas à trouver un moyen d'accéder à l'élément qui correspond à un pays et à un champ spécifique. Ce que je vois, ce sont quatre éléments, un pour chaque champ, ColumnSeries
qui n'ont pas de columns
propriété. Mon site am4core.registry.baseSprites[0]
n'a pas series
là-dedans.
Voici mon code complet :
import { Component, OnInit, NgZone, Input } from '@angular/core';
import * as am4core from "@amcharts/amcharts4/core";
import * as am4charts from "@amcharts/amcharts4/charts";
import am4themes_animated from "@amcharts/amcharts4/themes/animated";
import { CountryItinerary, Team } from "../model/classes"
am4core.useTheme(am4themes_animated);
@Component({
selector: 'barchart-distance',
templateUrl: './barchart-distance.component.html',
styleUrls: ['./barchart-distance.component.scss']
})
export class BarchartDistanceComponent implements OnInit {
constructor(private zone: NgZone) { }
_selectedTeam: Team | null
@Input()
set selectedTeam(team: Team | null) {
this._selectedTeam = team;
if (team) {
this.changeColorToBar(team.isocode, "week_1", 1.0)
}
}
chart: am4charts.XYChart
categoryAxis: any
valueAxis: any
ngOnInit() {
}
grabBar(country, weekId) {
// If you don't have access to the chart code in your angular scope,
// use am4core global.
// no reason to loop through ALL series/columns, just whipped this up quick
let foundBar: am4charts.XYSeries | null;
this.chart.series.each(series => {
if (series.name == "Week_2") {
console.log(series.dataItem)
}
});
return foundBar;
}
changeColorToBar(country, weekId, opacity) {
let bar = this.grabBar(country, weekId)
if (bar) {
bar.background.fillOpacity = opacity
}
}
createSeries(field, name) {
var series = this.chart.series.push(new am4charts.ColumnSeries());
series.name = name;
series.dataFields.valueY = field;
series.dataFields.categoryX = "country";
series.sequencedInterpolation = true;
series.columns.template.fillOpacity = 0.5
// Make it stacked
series.stacked = true;
// Configure columns
series.columns.template.width = am4core.percent(60);
series.columns.template.tooltipText = "[bold]{name}[/]\n[font-size:14px]{categoryX}: {valueY}";
console.log(series)
return series
}
drawWithData() {
this.zone.runOutsideAngular(() => {
this.chart = am4core.create("chartdiv2", am4charts.XYChart);
let data = [
new CountryItinerary("Italy", "IT", [10, 15, 15, 22]),
new CountryItinerary("Germany", "DE", [20, 30, 40, 24]),
new CountryItinerary("Greece", "GR", [13, 10, 20, 15])
]
this.chart.data = data.map ((el) => {
let newEl = { "country": el.isocode }
el.distances.forEach((item, index) => {
newEl["week_" + index] = item
})
return newEl
})
console.log(this.chart.data)
this.categoryAxis = this.chart.xAxes.push(new am4charts.CategoryAxis());
this.categoryAxis.dataFields.category = "country";
this.categoryAxis.renderer.grid.template.location = 0;
this.valueAxis = this.chart.yAxes.push(new am4charts.ValueAxis());
this.valueAxis.renderer.inside = true;
this.valueAxis.renderer.labels.template.disabled = true;
this.valueAxis.min = 0;
let numberOfTrips = data[0].distances.length
for (let i = 0; i < numberOfTrips; i++) {
this.createSeries("week_" + i, "Week_" + i)
}
console.log(this.chart.series)
})
}
ngAfterViewInit() {
this.drawWithData()
}
}
Là-haut, series.dataItem.dataContext
est indéfinie.