I need to change font size of cell or row. I can change style of row but cannot change size of font

I need to change font size of cell or row. I can change style of row but cannot change size of font

Kashif HaroonKashif Haroon Posts: 2Questions: 2Answers: 0
            buttons: [

                    {
                            extend: 'excelHtml5',
                            title: 'Report',
                            message: 'Message'
                            ,
                            "customize": function(xlsx) {
                            var sheet = xlsx.xl.worksheets['sheet1.xml'];

                            $('row:eq(1) c', sheet).attr('s','50');
                            $('row:eq(1) c', sheet).attr('s','12');
                            }
                    },

Answers

  • colincolin Posts: 15,237Questions: 1Answers: 2,599

    This thread should help, it's asking the same thing.

    Cheers,

    Colin

This discussion has been closed.