我有一个用amcharts构建的条形图。 我在this example之后建立了堆积的条形图。
如果我将鼠标悬停在页面中的其他元素(例如表格)上,则尝试更改框的alpha(或颜色)。 例如,如果用户将鼠标悬停在页面上相应的表格单元格上,我想更改框(2003年,欧洲)的alpha(或颜色)。
我已将图表放置在一个有角度的6分量中,但我想只要我正确捕获输入更改事件就没有关系。
编辑1。
我仍在努力导航对象。 我建立了条形图,看起来还可以
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
}
那么我有四个列系列,每个列用于我的数据。 我可以按领域划分系列。
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;
但是我无法找到一种方法来访问与一个国家和特定字段相对应的元素。我看到的是四个,每个字段ColumnSeries
一个,没有任何columns
属性。我的am4core.registry.baseSprites[0]
中没有series
。
这是我的完整代码:
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()
}
}
在那儿,series.dataItem.dataContext
未定义。
答案 0 :(得分:2)
您将希望获取可用于固定图表中的Column
的信息。例如。图表行/列标题或应用程序中的数据。然后,您可以遍历图表的系列以匹配其数据,例如国家/地区名称,然后遍历其columns
'dataItem.dataContext.year
以匹配年份。
有了年份和国家,我们可以从系列中获取一列,例如:
function grabColumn(year, country) {
// 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 foundColumn;
am4core.registry.baseSprites[0].series.each(series => {
if (series.name === country) {
series.columns.each(column => {
if (column.dataItem.dataContext.year === year) {
foundColumn = column;
}
});
}
});
return foundColumn;
}
要更改colors,尽管您可以直接设置fill
的{{1}}属性,但我建议使用States,例如将其添加到column
方法的末尾:
createSeries
所以有一张桌子:
const highlightState = series.columns.template.states.create('highlight');
highlightState.properties.fill = am4core.color("#f00"); // These are fine, too: // am4core.color("red"); // "red";
将鼠标悬停在数据单元格上,其行的第一个子项保存年份,而标题行的同一个 nth 子级保存国家/地区。我们可以使用它来获取适当的列并更改其状态,而不是 <table>
<thead><tr><td></td><th>Europe</th><th>North America</th><th>Asia</th><th>Latin America</th><th>Middle East</th><th>Africa</th></tr></thead>
<tbody>
<tr><th>2003</th><td>2.5</td><td>2.5</td><td>2.1</td><td>1.2</td><td>0.2</td><td>0.1</td></tr>
<tr><th>2004</th><td>2.6</td><td>2.7</td><td>2.2</td><td>1.3</td><td>0.3</td><td>0.1</td></tr>
<tr><th>2005</th><td>2.8</td><td>2.9</td><td>2.4</td><td>1.4</td><td>0.3</td><td>0.1</td></tr>
</tbody>
</table>
/ querySelector
,这将是您的棱角分明的东西:
addEventListener
您还需要确保有一个适当的const $headerRow = document.querySelector('thead tr');
let highlightedColumn;
document.querySelector('tbody').addEventListener('mouseover', event => {
if (event.target.matches('td')) {
const year = event.target.parentElement.getElementsByTagName('th')[0].childNodes[0].nodeValue;
const siblings = event.target.parentNode.children;
const totalSiblings = siblings.length;
let country;
for(let i = 1; i < totalSiblings; ++i) {
if (siblings[i] === event.target) {
country = $headerRow.children[i].childNodes[0].nodeValue;
break;
}
}
const column = grabColumn(year, country);
if (highlightedColumn !== column) {
if (highlightedColumn) {
highlightedColumn.setState('default');
}
column.setState('highlight');
highlightedColumn = column;
}
}
});
事件来重置突出显示的列。
这是一个演示:
https://codepen.io/team/amcharts/pen/36fae5caa2538b22fc2111666749c0b3
答案 1 :(得分:2)
(在他提供了实际的角度代码之后,在他为之忙碌的地方,添加了一个不同的答案,我以前的答案似乎相去甚远。)
我将自己的方法作为Input()
传递给表组件,但确保使用箭头功能,以保留该图表组件的作用域:
selectTeam = (team, weekN) => {
this._selectedTeam = team;
if (team) {
this.changeColorToBar(team.isocode, weekN, 1.0);
}
}
对于列本身,由于您要更改的属性的值也可能会更改,因此使用状态并直接在对象上直接调整属性的意义可能较小。在这种情况下,您将直接更改fillOpacity
,而不是在列的background
上更改:
changeColorToBar(country, weekId, opacity) {
let bar = this.grabBar(country, weekId);
if (bar && bar !== this.currentBar) {
if (this.currentBar) this.currentBar.fillOpacity = 0.5; // Default
bar.fillOpacity = opacity;
this.currentBar = bar;
}
}
我没有发现图表,系列和列的问题。时间安排当然是个问题,例如图表和系列必须实际加载,但这可能会在用户将鼠标悬停时发生:
grabBar(country, weekId = 0) {
const totalSeries = this.chart.series.length;
for (let i = 0; i < totalSeries; ++i) {
const series = this.chart.series.getIndex(i);
if (series.name === "Week_" + weekId) {
const totalColumns = series.columns.length;
for (let c = 0; c < totalColumns; ++c) {
const column = series.columns.getIndex(c);
if (
column.dataItem.dataContext.country === country
) {
return column;
}
}
}
}
}
这是一个演示:
https://stackblitz.com/edit/so-55597531-table-input-chart
如果您仍然无法找到系列中的列,而找不到其他列,则可以在StackBlitz上放置一个项目示例,以便我们尝试找出问题所在。