-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathplotly-scatter.json
More file actions
111 lines (111 loc) · 2.33 KB
/
plotly-scatter.json
File metadata and controls
111 lines (111 loc) · 2.33 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
{
"data": [
{
"x": [1, 2, 3, 4, 5],
"y": [2, 3, 1, 5, 4],
"type": "scatter",
"mode": "markers",
"name": "Green Data",
"marker": {
"color": "#a6e3a1",
"size": 8
}
},
{
"x": [1.5, 2.5, 3.5, 4.5, 5.5],
"y": [3, 4, 2, 6, 5],
"type": "scatter",
"mode": "markers",
"name": "Lavender Data",
"marker": {
"color": "#b4befe",
"size": 8
}
},
{
"x": [2, 3, 4, 5, 6],
"y": [1, 2, 0.5, 4, 3],
"type": "scatter",
"mode": "markers",
"name": "Mauve Data",
"marker": {
"color": "#cba6f7",
"size": 8
}
}
],
"layout": {
"title": {
"text": "Scatter Plot with Three Sets of Dots",
"x": 0.5,
"xanchor": "center",
"font": {
"family": "Roboto Mono, Fira Code, monospace",
"size": 20,
"color": "#cdd6f4"
}
},
"xaxis": {
"title": {
"text": "X Axis",
"font": {
"family": "Roboto Mono, Fira Code, monospace",
"size": 14,
"color": "#cdd6f4"
}
},
"gridcolor": "#45475a",
"linecolor": "#45475a",
"ticks": "outside",
"tickfont": {
"family": "Roboto Mono, Fira Code, monospace",
"size": 12,
"color": "#cdd6f4"
}
},
"yaxis": {
"title": {
"text": "Y Axis",
"font": {
"family": "Roboto Mono, Fira Code, monospace",
"size": 14,
"color": "#cdd6f4"
}
},
"gridcolor": "#45475a",
"linecolor": "#45475a",
"ticks": "outside",
"tickfont": {
"family": "Roboto Mono, Fira Code, monospace",
"size": 12,
"color": "#cdd6f4"
}
},
"width": 1080,
"height": 810,
"plot_bgcolor": "#1e1e2e",
"paper_bgcolor": "#1e1e2e",
"font": {
"family": "Roboto Mono, Fira Code, monospace",
"color": "#cdd6f4"
},
"showlegend": true,
"legend": {
"font": {
"family": "Roboto Mono, Fira Code, monospace",
"size": 12,
"color": "#cdd6f4"
},
"bgcolor": "#313244",
"bordercolor": "#45475a",
"borderwidth": 1,
"x": 1,
"xanchor": "right",
"y": 1
}
},
"config": {
"responsive": false,
"staticPlot": true
}
}