Created
May 26, 2019 17:12
-
-
Save ebsaral/d4408490a3503db700e5e9ac7d7b71d0 to your computer and use it in GitHub Desktop.
Example HFExcel JSON Template
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
{ | |
"sheets": [ | |
{ | |
"key": "sheet1", | |
"name": "Example Sheet 1", | |
"columns": [ | |
{ | |
"name": "Column 1", | |
"width": 2, | |
"args": [ | |
"headline" | |
], | |
"rows": [ | |
{ | |
"data": "Column 1 Row 1" | |
}, | |
{ | |
"data": "Column 1 Row 2" | |
} | |
] | |
}, | |
{ | |
"name": "Column 2", | |
"rows": [ | |
{ | |
"data": "Column 2 Row 1" | |
}, | |
{ | |
"data": "Column 2 Row 2" | |
} | |
] | |
}, | |
{ | |
"name": "Column 3", | |
"rows": [ | |
{ | |
"data": "Column 3 Row 1" | |
}, | |
{ | |
"data": "Column 3 Row 2" | |
} | |
] | |
} | |
] | |
} | |
], | |
"styles": [ | |
{ | |
"name": "headline", | |
"style": { | |
"bold": 1, | |
"font_size": 14, | |
"font": "Arial", | |
"align": "center" | |
} | |
} | |
] | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment