6

I’m trying to make mixed chart with dual y-axis by using zingcharts-angularjs directive.

For dual Y-axis, you follow ‘scale-y-2’ pattern, but it didn’t work in my AngularJS application. Does anyone know how to render two y-axis in zingcharts-angularjs?

4

1 回答 1

8

在 Angular 指令中向 ZingChart 添加多个 scale-y 与使用 vanilla JavaScript 相同。

首先,您需要确保在图表中包含一个“scale-y-2”:{} 对象。min:max:step 值应该从您的系列值继承,但如果需要,可以显式设置。

接下来,您需要确保将每组系列值与适当的 scale-y 相关联。为此,请包含“scales”:“”属性。这将接受具有两个逗号分隔值的字符串。您需要声明要与系列关联的 scale-x 和 scale-y。

目前 ZingChart 不接受 scaleY2 的驼峰式值。这必须在 JSON 中表示为“scale-y-2”。

下面的代码应该为您提供所需的内容。我已经对您的图表中可能缺少的线条提供了评论。

如果您想查看实时工作示例,可以运行以下代码。

var app = angular.module('myApp',['zingchart-angularjs']);

app.controller('MainController', function($scope){
  $scope.myJson = {
    globals : {
      shadow: false
    },
    type : 'bar',
    plot:{
      
    },
    backgroundColor : "#fff",
    scaleY :{
      lineColor : "#BDBFC1",
      lineWidth: "2px",
      tick:{
       lineWidth: "0px"
      }
    },
    "scale-y-2" : {  //add scale-y-2
      
    },
    scaleX :{
      lineColor : "#BDBFC1",
      lineWidth: "2px",
      tick:{
       lineWidth: "0px"
      }
    },
      series : [
        { 
          values : [54,23,34,23,43],
          scales: "scale-x, scale-y", //associate scales to series
          lineColor : "#D2262E",
          lineWidth : "2px",
          marker : {
            backgroundColor: "#D2262E",
            borderWidth : "0px"
          }
        },
        { 
          values : [1000,1500,1600,2000,4000],
          lineColor : "#2FA2CB",
          scales: "scale-x, scale-y-2", //associate scales to series
          lineWidth : "2px",
          marker : {
            backgroundColor: "#2FA2CB",
            borderWidth : "0px"
          }
        },
      ]
  };
});
html,body{
  margin: 0px;
}
<script src="http://cdn.zingchart.com/zingchart.min.js"></script>
<script src="https://ajax.googleapis.com/ajax/libs/angularjs/1.2.23/angular.min.js"></script>
<script src="http://cdn.zingchart.com/angular/zingchart-angularjs.js"></script>
<body ng-app="myApp">
  <div ng-controller="MainController">
    <div zingchart id="chart-1" zc-json="myJson" zc-width="100%" zc-height="568px"></div>
  </div>
</body>

注意:我在 ZingChart 团队。如果您还有其他问题,请告诉我。

于 2015-12-29T23:02:58.757 回答