-
Notifications
You must be signed in to change notification settings - Fork 54
/
json_example.json
63 lines (63 loc) · 1.15 KB
/
json_example.json
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
[
{
"sheet_name": "Sheet1",
"default_styles": {
"headers": {
"font_size": 17,
"bg_color": "yellow"
},
"cells": {
"bg_color": "red"
}
},
"columns": [
{
"col_name": "col_a",
"style": {
"bg_color": "blue",
"font_color": "yellow"
},
"width": 30,
"cells": [
{
"value": 1
},
{
"value": 2,
"style": {
"bold": true,
"font": "Arial",
"font_size": 30,
"font_color": "green",
"border_type": "double"
}
}
]
},
{
"col_name": "col_b",
"cells": [
{
"value": 3
},
{
"value": 4,
"style": {
"bold": true,
"font": "Arial",
"font_size": 16
}
}
]
}
],
"row_heights": {
"3": 40
},
"extra_features": {
"row_to_add_filters": 0,
"columns_and_rows_to_freeze": "A7",
"startrow": 5
}
}
]