Angular-nvd3(1.0.7)的BarBart的条未显示

时间:2019-04-17 03:09:38

标签: angularjs nvd3.js angular-nvd3 angularjs-nvd3-directives

我从example复制了所有选项和数据源。和图形显示,但我看不到条形图。但是,如果我将鼠标悬停在它上面,它将为我提供工具提示。所以酒吧在那里,但我看不到。.

我使用的版本是Angular-nvd3 1.0.7

enter image description here

和代码:

$scope.option4SkillForecast2 = {
      chart: {
        // type: 'lineChart',
        type: 'discreteBarChart',
        height: $(window).height() * 0.45,
        margin: {
          top: 20,
          right: 20,
          bottom: 50,
          left: 55
        },
        x: function (d) {
          return d.label;
        },
        y: function (d) {
          return d.value;
        },
        showValues: true,
        valueFormat: function (d) {
          return d3.format('')(d);
        },
        // color: ["red", "rgb(10,20,30)", "#935bcd", "#8b7aeb", "#8b7aeb", "#3982d2", "#a6d9fd", "#75b6d2", "#93dadc", "#65d1ae", "#61c478", "#4da338", "#76ce38", "#d9ec38", "#fbe739", "#f3af2f", "#ee7b28", "#ee7b28"],
        duration: 200,
        xAxis: {
          axisLabel: 'X Axis'
        },
        yAxis: {
          axisLabel: 'Y',
          axisLabelDistance: -10
        },
        legend: {
          margin: {
            top: 8,
            right: 50
            // bottom: 10
          }
        }
      }
    }

    $scope.data4SkillForecast = [{
      // key: "Skill Forecast",
      values: [{
          "label": "A",
          "value": 45
        },
        {
          "label": "B",
          "value": 30
        },
        {
          "label": "C",
          "value": 50
        },
        {
          "label": "D",
          "value": 70
        },
        {
          "label": "E",
          "value": 100
        },
        {
          "label": "F",
          "value": 20
        },
        {
          "label": "G",
          "value": 25
        },
        {
          "label": "H",
          "value": 30
        }
      ]
    }, ];

我不知道为什么酒吧不出现。这是一个错误或选项有问题吗?

1 个答案:

答案 0 :(得分:0)

我通过使用类型:multiBarChart而不是discreteBarChart来解决此问题,我不知道为什么discreteBarChart不起作用。如果有人知道,请告诉我。