Json2csv split label table into multi row

123 Views Asked by At

I have data like this:

data=[
    {
        firstName: 'Hello',
        lastName: 'World',
        age: 10
    },
    {
        firstName: 'Hello',
        lastName: 'World',
        age: 10
    }
];

How do i create table with multi rows in label like this with Json2Csv.Parser?

https://i.stack.imgur.com/zsgsz.png

0

There are 0 best solutions below