我正在尝试使用此处的 NVD3 角度指令创建条形图:http: //krispo.github.io/angular-nvd3/#/
我使用的图表是这个:http: //krispo.github.io/angular-nvd3/#/discreteBarChart
这是我在页面上创建图表的 html(在这种情况下上下文似乎并不重要):
<nvd3 options="options"
data="top10bar"
ng-mouseenter="mouseEnterEvent($event)"></nvd3>
这是控制器代码(标签所在的位置)
app.controller('BarChartController', function ($scope) {
$scope.options = {
chart: {
type: 'discreteBarChart',
height: 350,
margin: {
top: 20,
right: 20,
bottom: 60,
left: 55
},
width: 500,
x: function (d) {
return d.label;
},
y: function (d) {
return d.value;
},
showValues: true,
transitionDuration: 500,
xAxis: {
axisLabel: 'X Axis'
},
yAxis: {
axisLabel: 'Y Axis',
axisLabelDistance: 30
},
tooltips: false,
discretebar: {
rectClass: ['discreteBar', 'tableRow']
},
interactive: true
}
};
$scope.mouseEnterEvent = function (event) {
console.log("EVENT!");
console.log(event);
};
$scope.$on('elementMouseover.tooltip', function (event, data) {
console.log("In scope.on");
console.log(event);
console.log(data);
console.log("end");
});
$scope.$on('tooltipShow.directive', function (angularEvent, event) {
angularEvent.targetScope.$parent.event = event;
angularEvent.targetScope.$parent.$digest();
});
在控制器底部可以看到的三个事件处理程序中,只有第一个有效,因为我在 nvd3 中指定了 ng-mouseenter 选项。但是,当鼠标进入整个图表 div 时,此方法有效。我想要的是在单个栏上检测鼠标悬停,以便我可以突出显示它,然后突出显示我的视图的另一部分。
你将如何去做我想要在这里实现的目标?非常感谢任何帮助,干杯!