Skip to content

Instantly share code, notes, and snippets.

@ebsaral
Created May 26, 2019 17:12
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save ebsaral/d4408490a3503db700e5e9ac7d7b71d0 to your computer and use it in GitHub Desktop.
Save ebsaral/d4408490a3503db700e5e9ac7d7b71d0 to your computer and use it in GitHub Desktop.
Example HFExcel JSON Template
{
"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