0

I want to have a multiple charts, but when I do it by

$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.
            }
        ];`

I see that all of 3 charts are in block visible. I want to first chart to be visible and second and third - invisible

Gary
  • 13,303
  • 18
  • 49
  • 71
Romanoti
  • 1,107
  • 2
  • 8
  • 11

1 Answers1

0

I found some answer on my question: you should to use "disabled"

{
            values: sales,
            key: 'Покупок',
            disabled: true
        },
Romanoti
  • 1,107
  • 2
  • 8
  • 11