react-data-export icon indicating copy to clipboard operation
react-data-export copied to clipboard

How to export data to xsl?

Open MarwenBenTalebAli opened this issue 2 years ago • 0 comments

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>

MarwenBenTalebAli avatar Oct 06 '21 15:10 MarwenBenTalebAli