(scope, ...data)
| 3048 | scope.axes.push(...axis); |
| 3049 | } |
| 3050 | function addData(scope, ...data) { |
| 3051 | if (!scope.data) scope.data = []; |
| 3052 | scope.data.push(...data); |
| 3053 | } |
| 3054 | function addMarks(scope, ...marks) { |
| 3055 | if (!scope.marks) scope.marks = []; |
| 3056 | scope.marks.push(...marks); |
nothing calls this directly
no outgoing calls
no test coverage detected