mirror of
https://github.com/yldio/copilot.git
synced 2024-11-13 06:40:06 +02:00
19 lines
595 B
JavaScript
19 lines
595 B
JavaScript
const data = [
|
|
{
|
|
type: 'scatter', // all "scatter" attributes: https://plot.ly/javascript/reference/#scatter
|
|
x: [1, 2, 3], // more about "x": #scatter-x
|
|
y: [6, 2, 3], // #scatter-y
|
|
marker: { // marker is an object, valid marker keys: #scatter-marker
|
|
color: 'rgb(16, 32, 77)' // more about "marker.color": #scatter-marker-color
|
|
}
|
|
},
|
|
{
|
|
type: 'bar', // all "bar" chart attributes: #bar
|
|
x: [1, 2, 3], // more about "x": #bar-x
|
|
y: [6, 2, 3], // #bar-y
|
|
name: 'bar chart example' // #bar-name
|
|
}
|
|
];
|
|
|
|
module.exports = data;
|