-
Notifications
You must be signed in to change notification settings - Fork 19
Expand file tree
/
Copy pathconfig.json
More file actions
55 lines (55 loc) · 1.21 KB
/
config.json
File metadata and controls
55 lines (55 loc) · 1.21 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
{
"xValue": "sepal_width",
"yValue": "sepal_length",
"sizeValue": "petal_length",
"pointRadiusValue": null,
"margin": {
"top": 20,
"right": 67,
"bottom": 60,
"left": 60
},
"fontSize": "14px",
"fontFamily": "cursive",
"pointRadius": 18.5,
"pointRadiusRange": [1, 30],
"pointFill": "black",
"pointOpacity": 0.7,
"blurRadius": 0,
"sizeRange": [2, 30],
"loadingFontSize": "24px",
"loadingFontFamily": "sans-serif",
"loadingMessage": "Loading...",
"dataUrl": "iris.csv",
"colorScale": {
"setosa": "#4e79a7",
"versicolor": "#f28e2b",
"virginica": "#e15759"
},
"showAxis": true,
"scatterPlotTitle": "My Scatter 2",
"axisColor": "#e0e0e0",
"titleColor": "#ffffff",
"loadingTextColor": "#bbbbbb",
"xAxisLabel": "Sepal Width (cm)",
"yAxisLabel": "Sepal Length (cm)",
"titleFontSize": "24px",
"titleFontFamily": "sans-serif",
"visualEditorWidgets": [
{
"type": "slider",
"label": "Point Radius (when not using size)",
"property": "Point Radius",
"min": 1,
"max": 30,
"step": 2.5
},
{
"type": "slider",
"label": "Blur Radius",
"property": "blurRadius",
"min": 0,
"max": 10
}
]
}