Angular-ui + D3:如何实现上下文菜单(popover vs modal)?

时间:2013-10-29 11:00:16

标签: angularjs d3.js modal-dialog popover angular-ui

鉴于以下用例:

我使用D3js渲染由AngularJS管理的对象。我想在D3图表中添加交互性。当点击svg元素时,我想有一种允许修改对象属性的弹出菜单。 AngularJS需要这些属性,但D3不会呈现这些属性。

D3-Angular集成源自使用闭包的http://bl.ocks.org/biovisualize/5372077

当前实施:

截至今天,我使用angular-ui bootstrap中的$ modal服务来创建弹出菜单。从功能的角度来看,它的效果非常好:     单击svg元素时,D3将调度一个事件     该事件由Angular捕获,它调用$ modal服务     在模态窗口中,我修改了对象属性

但是我对渲染不满意。我希望弹出菜单看起来像一个弹出窗口。它应该放在靠近被点击的svg元素的位置。

据我了解,我有两个选项

  1. 继续使用$ modal服务并修改其外观。应该采取什么方法?使用windowClass选项?
  2. 停止使用$ modal服务并开始攻击popover指令。问题是我不认为这是可能的 将这样的指令添加到svg元素。解决方案是 创建一个靠近$ modal服务的popover服务。
  3. 应该选择哪个选项?以及如何实施它?

    修改

    使用自定义my-popover指令工作plunker: http://plnkr.co/edit/5KYvxi?p=preview

1 个答案:

答案 0 :(得分:9)

可以向d3生成的代码添加指令,只需要确保在呈现内容后对内容调用$compile服务。

对于给定的示例,它看起来像这样:

    .directive('barChart', function($compile){  // inject $compile
        var chart = d3.custom.barChart();
        return {
            restrict: 'E',
            replace: true,
            template: '<div class="chart"></div>',
            scope:{
                height: '=height',
                data: '=data',
                hovered: '&hovered'
            },
            link: function(scope, element, attrs) {
                var chartEl = d3.select(element[0]);
                chart.on('customHover', function(d, i){
                    scope.hovered({args:d});
                });

                scope.$watch('data', function (newVal, oldVal) {
                    chartEl.datum(newVal).call(chart);
                    $compile(element.contents())(scope);   // <-- call to $compile
                });

                scope.$watch('height', function(d, i){
                    chartEl.call(chart.height(scope.height));
                    $compile(element.contents())(scope); // <-- call to $compile
                })
            }
        }

d3的绘图功能中:

       bars.enter().append('rect')
            .classed('bar', true)
            .attr('myPopover', 'Text to show') // <-- Adding an attribute here.
            .attr({x: chartW,
                width: barW,
                y: function(d, i) { return y1(d); },
                height: function(d, i) { return chartH - y1(d); }
            })
            .on('mouseover', dispatch.customHover);

Demo