我希望有多个图表,但是当我按
进行时$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个图表都在块中可见。我希望第一个图表可见,第二个和第三个 - 不可见
答案 0 :(得分:0)
我在问题上找到了一些答案:你应该使用“禁用”
{
values: sales,
key: 'Покупок',
disabled: true
},