MCPcopy Create free account
hub / github.com/microsoft/SandDance / addData

Function addData

docs/app/js/sanddance-app.js:3050–3053  ·  view source on GitHub ↗
(scope, ...data)

Source from the content-addressed store, hash-verified

3048 scope.axes.push(...axis);
3049}
3050function addData(scope, ...data) {
3051 if (!scope.data) scope.data = [];
3052 scope.data.push(...data);
3053}
3054function addMarks(scope, ...marks) {
3055 if (!scope.marks) scope.marks = [];
3056 scope.marks.push(...marks);

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected