The below json aligns the column contents towards left.How to align the header "Name" in left.
Header Json:
"columns": [
{
"title": "Name",
"align": "Left",
"width": "25%"
},
{
"title": "Address",
"align": "Center",
"width": "20%"
}
]}
Json data for columns:
"studentList": [
{
"name": "Paulo",
"address":"US"
},
{
"name": "Andrew",
"address":"UK"
},
],