Skip to content

Commit 5dbd675

Browse files
committed
adjust plotly import data obj
1 parent b71cc60 commit 5dbd675

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plotly2.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,7 @@ plotly.plot(initdata, initlayout, function (err, msg) {
8282

8383
if (loadData) {
8484
var stream = makeStream(loadData);
85-
var streamObject = JSON.stringify( {x: loadData.x, y: loadData.y} );
85+
var streamObject = JSON.stringify( {x: loadData.x, y: loadData.y, name: loadData.name} );
8686
console.log(streamObject);
8787
stream.write(streamObject+'\n');
8888
}

0 commit comments

Comments
 (0)