Zingchart-angularjs-获取有关点击事件的数据

时间:2018-09-03 08:25:13

标签: angularjs zingchart

我正在 AngularJs 应用程序中使用 Zingchart 。我有一个条形图,其中scale X定义了user_type的列表,而scale Y定义了users的数量。我需要在每个栏中单击couple (X, Y)并链接到其他视图。

我该怎么做?

1 个答案:

答案 0 :(得分:0)

测试3个或4个事件功能后,右边的是 node_click

$scope.myRender = {
    events: {
      node_click: function(p) {
        console.log(p.scaletext, p.value);
        $rootScope.$apply(function() {
          $location.path("config");
        });
      }
    }
};

而且我必须添加zc-render =“ myRender”:

<div zingchart id="chart-1" zc-json="myJson" zc-render="myRender" zc-width="100%" zc-height="600px"></div>