securedeveloper / react-data-export

Export dataset in react.
https://securedeveloper.github.io/react-data-export/
MIT License
179 stars 191 forks source link

How to export data to xsl? #163

Open MarwenBenTalebAli opened 2 years ago

MarwenBenTalebAli commented 2 years ago

I want a .xls excel file I tried the porps fileExtension="xls" but I can not open the file.

const multiDataSet = [
  {
    columns: [{ title: 'Date' }, { title: 'Valeur 1' }, { title: 'Valeur 2' }],
    data: [[{ value: 'Dat1' }, { value: '10' }, { value: '12' }]]
  }
];
  //...
    <ExcelFile
        fileExtension='xls'
        element={<button>Download Data</button>}>
         <ExcelSheet dataSet={multiDataSet} name='ChartData' />
    </ExcelFile>