显示3的第一张图表

时间:2015-08-25 13:22:05

标签: angularjs charts nvd3.js

我希望有多个图表,但是当我按

进行时
$scope.data = [
            {
                values: day, //values - represents the array of {x,y} data points
                key: 'Проходимость',//key  - the name of the series.

            },
            {
                values: day, //values - represents the array of {x,y} data points
                key: 'Проходимость' //key  - the name of the series.
            },
            {
                values: day, //values - represents the array of {x,y} data points
                key: 'Проходимость' //key  - the name of the series.
            }
        ];`

我看到所有3个图表都在块中可见。我希望第一个图表可见,第二个和第三个 - 不可见

1 个答案:

答案 0 :(得分:0)

我在问题上找到了一些答案:你应该使用“禁用”

{
            values: sales,
            key: 'Покупок',
            disabled: true
        },