Filled Area Plots in Nodejs
How to make a filled area plot in nodejs. An area chart displays a solid color between the traces of a graph.
// Learn about API authentication here: https://plotly.com/nodejs/getting-started
// Find your api_key here: https://plotly.com/settings/api
require('plotly')(username, api_key);
var trace1 = {
x: [1, 2, 3, 4],
y: [0, 2, 3, 5],
fill: "tozeroy",
type: "scatter"
};
var trace2 = {
x: [1, 2, 3, 4],
y: [3, 5, 1, 7],
fill: "tonexty",
type: "scatter"
};
var data = [trace1, trace2];
var graphOptions = {filename: "basic-area", fileopt: "overwrite"};
plotly.plot(data, graphOptions, function (err, msg) {
console.log(msg);
});