it's the only excel library that really works on flutter guys , don't waste your time to look for an alternative , great job guys you really saved my A**
Hello, Thank you for reaching out. We suggest using the saveAsExcel method for saving the document. Code snippet: final List bytes = workbook.saveAsStream(); saveAsExcel(bytes, 'ExcelNumberFormat.xlsx'); Please look into the below UG reference link. UG documentation link: syncfusion.pulse.ly/rkh9i1pnv8
The name 'Row' is defined in the libraries 'package:flutter/src/widgets/basic.dart' and 'package:syncfusion_flutter_xlsio/xlsio.dart'. Try using 'as prefix' for one of the import directives, or hiding the name from all but one of the imports
Flutter XlsIO has its own Row, Column, and Alignment classes. So the error will occur when you refer "syncfusion_flutter_xlsio" package in the application. So, please use the below code in the application. import 'package:syncfusion_flutter_xlsio/xlsio.dart' hide Row, Column, Alignment;
Hi, Thank you for reaching out. We have provided an option in File Menu to open the excel file in a spreadsheet through the UI level. And the open method is also available to open the file in a spreadsheet programmatically. For more details, please refer to the below links. Demo Link: ej2.syncfusion.com/aspnetcore/Spreadsheet/DefaultFunctionalities#/material Documentation Link: ej2.syncfusion.com/aspnetcore/documentation/spreadsheet/open-save/ API Link: ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#open To save/open the Excel file on the server, please refer to the below link. www.syncfusion.com/kb/11970/how-to-open-and-save-an-excel-file-to-server-in-the-spreadsheet NOTE: The code blocks are available in the demo and documentation links themselves. Please check the source tab.
Hi, There is no support to load and edit any existing Excel document programmatically. XlsIO allows to create Excel files from scratch. You can refer to the following link for this, help.syncfusion.com/flutter/xlsio/working-with-cells#adding-a-text-to-excel-worksheet Thanks for your question.
Hello, Syncfusion Flutter XlsIO is an Excel creation library that does not support reading existing Excel documents. As you have mentioned that an Excel file with a formula becomes messy while editing, we request you to create a support ticket through pulse.ly/ytpahvlhid and post your query there, along with the code snippet. This will be helpful for us in investigating the query.
Hi Inzimam Bhatti, We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident We will check on this with our team and post a response but it will take a little time. Thanks for your question!
Syncfusion Flutter XlsIO is an Excel creation library. Currently, we don't have support for opening existing Excel documents, and we do not have any plans to implement this feature. So, we cannot open the Excel document and append new data within the same file.
Hi Kanokwan Yeo, We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident We will check on this with our team and post a response but it will take a little time. Thanks for your question!
Please use the following code snippet to import the data to the table. Code snippet: // Create a new Excel Document. final Workbook workbook = Workbook(); // Accessing sheet via index. final Worksheet sheet = workbook.worksheets[0]; // Create Data Rows for importing. final List dataRows = _buildReportDataRows(); // Import the Data Rows in to Worksheet. [sheet.importData(dataRows,](sheet.importData(dataRows,) 1, 1); sheet.tableCollection.create('Table1', sheet.getRangeByName('A1:C6')); sheet.getRangeByName('A1:C6').autoFitColumns(); final List bytes = workbook.saveAsStream(); saveAsExcel(bytes, '378577_Issue.xlsx'); workbook.dispose(); List _buildReportDataRows() { List excelDataRows = []; final List<_Report> reports = _getSalesReports(); excelDataRows = [reports.map((_Report](reports.map((_Report) dataRow) { return ExcelDataRow(cells: [ ExcelDataCell(columnHeader: 'Sales Person', value: dataRow.salesPerson%29, ExcelDataCell( columnHeader: 'Sales Jan to June', value: dataRow.salesJanJune%29, ExcelDataCell( columnHeader: 'Sales July to Dec', value: dataRow.salesJulyDec%29, ]); }).toList(); return excelDataRows; } // Create List objects for Report class. List<_Report> _getSalesReports() { final List<_Report> reports = <_Report>[]; reports.add(_Report('Andy Bernard', 45000, 58000)); reports.add(_Report('Jim Halpert', 34000, 65000)); reports.add(_Report('Karen Fillippelli', 75000, 64000)); reports.add(_Report('Phyllis Lapin', 56500, 33600)); reports.add(_Report('Stanley Hudson', 46500, 52000)); return reports; } // Custom Report class. class _Report { _Report(this.salesPerson, this.salesJanJune, this.salesJulyDec); late String salesPerson; late int salesJanJune; late int salesJulyDec; } Kindly refer to the following links to know more about tables and import data methods. help.syncfusion.com/flutter/xlsio/working-with-data help.syncfusion.com/flutter/xlsio/working-with-table
Hello Hassan, Thank you for reaching out. You can create multiple worksheets in Syncfusion Flutter XlsIO. Please follow the below link to the code snippet to create multiple sheets in multiple ways. help.syncfusion.com/flutter/xlsio/working-with-excel-worksheet#create-a-worksheet
Hello, The reported issue has been fixed recently. Kindly upgrade your Syncfusion packages to this new 24.2.8 version and let us know if the issue is resolved. Flutter Package: pub.dev/packages/syncfusion_flutter_xlsio/versions/24.2.8
Hello, We suspect this issue occurs at your end due to Flutter version and packages difference. We suggest you to upgrade the version for the below list of packages to resolve the issue. After upgraded please do "flutter pub upgrade" command once and check whether the issue is resolved. environment: sdk: ">=2.12.0
Hello Hassam, Thank you for reaching out. Syncfusion Flutter XlsIO does not have support to load data into Excel from an Excel connection. At present, we support only importing data from a list and array. Please look into the below link for more information about this. help.syncfusion.com/flutter/xlsio/working-with-data
Hello Ridhi, Thank you for reaching out. You can refer to this, help.syncfusion.com/flutter/xlsio/working-with-excel-worksheet#create-a-worksheet This parameter helps you add so many worksheets while creating a workbook. NOTE: If no parameter, a single sheet will be created.
Thanks for video. I can use the table ? In the code "sheet.tableCollection.create('Table1', sheet.getRangeByName('A1:C4'));" in my Flutter "tableCollection" is undifined and say "The getter 'tableCollection' isn't defined for the type 'Worksheet'. Try importing the library that defines 'tableCollection', correcting the name to the name of an existing getter, or defining a getter or field named "
Hi, We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident We will check on this with our team and post a response but it will take a little time. Thanks for your question!
We are unable to reproduce the issue at our end. Kindly share a sample illustrating the issue or modify the following sample and reproduce the issue which would help us to proceed further. Sample link - www.syncfusion.com/downloads/support/directtrac/general/ze/T-398949-423379284 Kindly refer to the following link to know more about the Excel tables. Also, please ensure that, you are using the latest version of Syncfusion Flutter XlsIO. Because the tables in Flutter XlsIO is used only from v20.1.47 and above. help.syncfusion.com/flutter/xlsio/working-with-table
Hi Kshitij Kumawat, Thank you for reaching out to us. Please refer to the following UG link, help.syncfusion.com/flutter/xlsio/getting-started#create-an-excel-document-in-mobile. This helps to save the document in an External storage path. // Get external storage directory final directory = await getExternalStorageDirectory();
hi, it was very nice video. I'm trying to open one archive that already exists but when I click the button nothing happens. Could u help me please? I placed the xlsx archive in assets and I use (final String fileName = '$path/Arquivo.xlsx';)
Hi ARTHUR FREITAS SILVA, For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident If you have a retail or flat license, you also have access to our support chat. We will check on this with our team and post a response, but it will take a little time. Thanks for your question!
@@SyncfusionInc I'll try the contact, but Can u answer me just one thing for now please? May I can open a xlsx inside the flutter application or it's no possible and open just in web?
Hi Arthur, We don't have the support to read or load Excel files, www.syncfusion.com/feedback/21974/read-excel-files-using-flutter-xlsio. XlsIO allows to create Excel files.
As of now, we do not have support for reading Excel files in Flutter XlsIO. However, we have logged a feature report for this. You can track the status of the defect report through below feedback link. Track Status: www.syncfusion.com/feedback/21974/read-excel-files-using-flutter-xlsio
Hello Haim, Thanks for watching! The product teams that work on each of our controls create the video. Let us know if you have any requests or suggestions.
I'm trying to use this in the company I work for but the amount charged by them makes it impossible since the company I work for is big but the application I'm creating is for a specific area where the application will be used by few users...
Hi, Thank you for reaching out to us. Syncfusion does not support Spreadsheet viewer in the Flutter platform. We suggest using Microsoft Excel to view the generated Excel document.
Hello Mr.S Gamer, Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue. bit.ly/395t17c
Hi Manu, Thanks for reaching out and watching our video. Please refer to the following UG link to insert rows and columns, help.syncfusion.com/flutter/xlsio/worksheet-rows-and-columns-manipulation#insert-rows-and-columns
Hi DevKamal, Sorry, we don’t have an Ecommerce application in Flutter. We provide custom control in Flutter and the users can design their application as desired using our widgets. If you have any queries in using our controls, we recommend you to use the support chat on our website or opening a ticket. www.syncfusion.com/support/directtrac/incidents/newincident Thank you.
Hi Krishna, Thank you for watching our video. You can refer to the following help link to import data from the list, help.syncfusion.com/flutter/xlsio/working-with-data#import-data-from-listt
Hello, We can look into this and get back to you but response times via our TH-cam videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident If you have a retail or flat license, you also have access to our support chat.
Please export the MySQL data to a collection object and import it as Excel since Syncfusion Flutter XlsIO Library does not have a direct option to print data from MySQL. Kindly go through the below link to know about importing data into Excel. help.syncfusion.com/flutter/xlsio/working-with-data
how do i add rows i don't want to be getting a range like this everytime sheet.getRangeByName('A1').setText('head'), i just want to dynamically add values to the first ranges from A1 to Z1 .
Hi, We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident We will check on this with our team and post a response but it will take a little time. Thanks for your question!
We are unable to reproduce the issue at our end. The Excel file is correctly opened using the Excel app. So, kindly share a sample illustrating the reported issue, or else share the code snippet you are using at your end, which would help us proceed further.
Hello Bobby Jose, Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue. bit.ly/395t17c
I have problem with this.... - the generated workbook can only be opened by google sheet app in android device. - if I open with excel app in android device, the generated workbook is corrupted. I wonder if anyone has similar problem and have any idea about it
Hi, We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident We will check on this with our team and post a response but it will take a little time. Thanks for your question!
Hi, We have included the fix to resolve the reported issue in our weekly Flutter release version 24.1.46. Kindly upgrade your Syncfusion packages to this new 24.1.46 version and let us know if the issue is resolved. Flutter Package: pub.pulse.ly/y4ohhulpzf
Hi, We have included the fix to resolve the reported issue in our weekly Flutter release version 24.1.46. Kindly upgrade your Syncfusion packages to this new 24.1.46 version and let us know if the issue is resolved. Flutter Package: pub.pulse.ly/ofc0peoaf0
@@SyncfusionInc Actually I have data from json I have table of students with id ,names , subjects average, etc. many columns and many rows. I just want to insert all these datat to excel and present data in a chart.
Hi hassan sadeq, For the fastest response to technical questions, we recommend using the support chat on our website or opening a ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident We will check on this with our team and post a response but it will take a little time. Thanks for your question!
Hello jonnathan yesid, Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue. bit.ly/395t17c
Hi, Currently, Syncfusion Word library (DocIO) doesn’t support creating DOCX format documents in Flutter. We do not have any immediate plans to implement this.
it's the only excel library that really works on flutter guys , don't waste your time to look for an alternative , great job guys you really saved my A**
Hello Djazeiry.
Thank you for watching our video. We are glad that you have found it helpful.
@@SyncfusionInc 🥰🥰🥰
Amazing plugin & beautiful UI I am using this plugin in my project And this working fine thanks for making🔥🔥🔥🔥
Hi Sachin,
Thank you for your feedback. We are glad that you have fount it useful.
Thank you so much for this lesson!
Thank you, How can I save the file?
Hello,
Thank you for reaching out. We suggest using the saveAsExcel method for saving the document.
Code snippet:
final List bytes = workbook.saveAsStream();
saveAsExcel(bytes, 'ExcelNumberFormat.xlsx');
Please look into the below UG reference link.
UG documentation link: syncfusion.pulse.ly/rkh9i1pnv8
The name 'Row' is defined in the libraries 'package:flutter/src/widgets/basic.dart' and 'package:syncfusion_flutter_xlsio/xlsio.dart'.
Try using 'as prefix' for one of the import directives, or hiding the name from all but one of the imports
Hi Rowan,
Thank you for your recommendation. We will forward this along to our developer team.
Flutter XlsIO has its own Row, Column, and Alignment classes. So the error will occur when you refer "syncfusion_flutter_xlsio" package in the application. So, please use the below code in the application.
import 'package:syncfusion_flutter_xlsio/xlsio.dart' hide Row, Column, Alignment;
you are the best!! you saved my life thanks
Hi azizi,
Thank you for watching our video. That’s great. We're happy you've found it useful.
Which application you will use for excel viewer?
Hi,
Thank you for reaching out.
We have provided an option in File Menu to open the excel file in a spreadsheet through the UI level. And the open method is also available to open the file in a spreadsheet programmatically. For more details, please refer to the below links.
Demo Link: ej2.syncfusion.com/aspnetcore/Spreadsheet/DefaultFunctionalities#/material
Documentation Link: ej2.syncfusion.com/aspnetcore/documentation/spreadsheet/open-save/
API Link: ej2.syncfusion.com/javascript/documentation/api/spreadsheet/#open
To save/open the Excel file on the server, please refer to the below link.
www.syncfusion.com/kb/11970/how-to-open-and-save-an-excel-file-to-server-in-the-spreadsheet
NOTE: The code blocks are available in the demo and documentation links themselves. Please check the source tab.
this is the real "how to do" vídeo!!
Hi,
Yes, it is.
Thanks you so much, exactly what I was looking for !!!
Hi,
That's great. Thank you for watching our video. We're glad that you got it to work.
Greetings! Does this support cell editing manually using keyboard?
Hi,
There is no support to load and edit any existing Excel document programmatically. XlsIO allows to create Excel files from scratch. You can refer to the following link for this, help.syncfusion.com/flutter/xlsio/working-with-cells#adding-a-text-to-excel-worksheet
Thanks for your question.
May I ask ? Can flutter edit excel that has formula in it ?
I've tried it but end up my excel file become messy
Hello,
Syncfusion Flutter XlsIO is an Excel creation library that does not support reading existing Excel documents.
As you have mentioned that an Excel file with a formula becomes messy while editing, we request you to create a support ticket through pulse.ly/ytpahvlhid and post your query there, along with the code snippet. This will be helpful for us in investigating the query.
hi!
Can you plase tell how to append a new row with data on button click within the same file.
it will be much appriciated.
Hi Inzimam Bhatti,
We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
www.syncfusion.com/support/directtrac/incidents/newincident
We will check on this with our team and post a response but it will take a little time.
Thanks for your question!
Syncfusion Flutter XlsIO is an Excel creation library. Currently, we don't have support for opening existing Excel documents, and we do not have any plans to implement this feature. So, we cannot open the Excel document and append new data within the same file.
Oh yeah~~~ thank you for my saving time.
Hi,
That’s great. Thank you.
If importing bank(payroll) excel file how can I import data to table ? Can give me some example..
Hi Kanokwan Yeo,
We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
www.syncfusion.com/support/directtrac/incidents/newincident
We will check on this with our team and post a response but it will take a little time.
Thanks for your question!
Please use the following code snippet to import the data to the table.
Code snippet:
// Create a new Excel Document.
final Workbook workbook = Workbook();
// Accessing sheet via index.
final Worksheet sheet = workbook.worksheets[0];
// Create Data Rows for importing.
final List dataRows = _buildReportDataRows();
// Import the Data Rows in to Worksheet.
[sheet.importData(dataRows,](sheet.importData(dataRows,) 1, 1);
sheet.tableCollection.create('Table1', sheet.getRangeByName('A1:C6'));
sheet.getRangeByName('A1:C6').autoFitColumns();
final List bytes = workbook.saveAsStream();
saveAsExcel(bytes, '378577_Issue.xlsx');
workbook.dispose();
List _buildReportDataRows() {
List excelDataRows = [];
final List<_Report> reports = _getSalesReports();
excelDataRows = [reports.map((_Report](reports.map((_Report) dataRow) {
return ExcelDataRow(cells: [
ExcelDataCell(columnHeader: 'Sales Person', value: dataRow.salesPerson%29,
ExcelDataCell(
columnHeader: 'Sales Jan to June', value: dataRow.salesJanJune%29,
ExcelDataCell(
columnHeader: 'Sales July to Dec', value: dataRow.salesJulyDec%29,
]);
}).toList();
return excelDataRows;
}
// Create List objects for Report class.
List<_Report> _getSalesReports() {
final List<_Report> reports = <_Report>[];
reports.add(_Report('Andy Bernard', 45000, 58000));
reports.add(_Report('Jim Halpert', 34000, 65000));
reports.add(_Report('Karen Fillippelli', 75000, 64000));
reports.add(_Report('Phyllis Lapin', 56500, 33600));
reports.add(_Report('Stanley Hudson', 46500, 52000));
return reports;
}
// Custom Report class.
class _Report {
_Report(this.salesPerson, this.salesJanJune, this.salesJulyDec);
late String salesPerson;
late int salesJanJune;
late int salesJulyDec;
}
Kindly refer to the following links to know more about tables and import data methods.
help.syncfusion.com/flutter/xlsio/working-with-data
help.syncfusion.com/flutter/xlsio/working-with-table
i ❤️ Syncfusion
thank you are the best
Thank you. We really appreciate your feedback.
Can i create multiple sheets and how ?
Hello Hassan,
Thank you for reaching out.
You can create multiple worksheets in Syncfusion Flutter XlsIO. Please follow the below link to the code snippet to create multiple sheets in multiple ways.
help.syncfusion.com/flutter/xlsio/working-with-excel-worksheet#create-a-worksheet
Hello, i got error like this = Error: Unsupported operation: Cannot clear an unmodifiable list. can you help me to resolve this?
Hello,
The reported issue has been fixed recently. Kindly upgrade your Syncfusion packages to this new 24.2.8 version and let us know if the issue is resolved.
Flutter Package: pub.dev/packages/syncfusion_flutter_xlsio/versions/24.2.8
Perfect job Syncfusion I have a error and I couldn't figure it out.
error: Instance member 'writeAsBytes' can't be accessed using static access.
Hello,
We suspect this issue occurs at your end due to Flutter version and packages difference. We suggest you to upgrade the version for the below list of packages to resolve the issue. After upgraded please do "flutter pub upgrade" command once and check whether the issue is resolved.
environment:
sdk: ">=2.12.0
what if i download the data that come from API (Api connected to SQL database ) please help
Hello Hassam,
Thank you for reaching out.
Syncfusion Flutter XlsIO does not have support to load data into Excel from an Excel connection. At present, we support only importing data from a list and array. Please look into the below link for more information about this.
help.syncfusion.com/flutter/xlsio/working-with-data
Could you please explain how to add tabs like sheet1 sheet2 sheet3 ??
Hello Ridhi,
Thank you for reaching out. You can refer to this,
help.syncfusion.com/flutter/xlsio/working-with-excel-worksheet#create-a-worksheet
This parameter helps you add so many worksheets while creating a workbook.
NOTE: If no parameter, a single sheet will be created.
Thanks for video. I can use the table ? In the code "sheet.tableCollection.create('Table1', sheet.getRangeByName('A1:C4'));" in my Flutter "tableCollection" is undifined and say "The getter 'tableCollection' isn't defined for the type 'Worksheet'.
Try importing the library that defines 'tableCollection', correcting the name to the name of an existing getter, or defining a getter or field named "
Hi,
We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
www.syncfusion.com/support/directtrac/incidents/newincident
We will check on this with our team and post a response but it will take a little time.
Thanks for your question!
We are unable to reproduce the issue at our end. Kindly share a sample illustrating the issue or modify the following sample and reproduce the issue which would help us to proceed further.
Sample link - www.syncfusion.com/downloads/support/directtrac/general/ze/T-398949-423379284
Kindly refer to the following link to know more about the Excel tables. Also, please ensure that, you are using the latest version of Syncfusion Flutter XlsIO. Because the tables in Flutter XlsIO is used only from v20.1.47 and above.
help.syncfusion.com/flutter/xlsio/working-with-table
@@SyncfusionInc thanks I resolve the problem create the table with cells, as a matrix
writeasbytes is saving files to a temporary directory not saving them permanently. Please help!
Hi Kshitij Kumawat,
Thank you for reaching out to us. Please refer to the following UG link,
help.syncfusion.com/flutter/xlsio/getting-started#create-an-excel-document-in-mobile.
This helps to save the document in an External storage path.
// Get external storage directory
final directory = await getExternalStorageDirectory();
hi, it was very nice video. I'm trying to open one archive that already exists but when I click the button nothing happens. Could u help me please? I placed the xlsx archive in assets and I use (final String fileName = '$path/Arquivo.xlsx';)
Hi ARTHUR FREITAS SILVA,
For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
www.syncfusion.com/support/directtrac/incidents/newincident
If you have a retail or flat license, you also have access to our support chat.
We will check on this with our team and post a response, but it will take a little time.
Thanks for your question!
@@SyncfusionInc I'll try the contact, but Can u answer me just one thing for now please? May I can open a xlsx inside the flutter application or it's no possible and open just in web?
Hi Arthur,
We don't have the support to read or load Excel files,
www.syncfusion.com/feedback/21974/read-excel-files-using-flutter-xlsio. XlsIO allows to create Excel files.
As of now, we do not have support for reading Excel files in Flutter XlsIO. However, we have logged a feature report for this. You can track the status of the defect report through below feedback link.
Track Status: www.syncfusion.com/feedback/21974/read-excel-files-using-flutter-xlsio
hi syncfusion i would love to know how you create this tutorials. i wish to do so as well
Hello Haim,
Thanks for watching! The product teams that work on each of our controls create the video. Let us know if you have any requests or suggestions.
I'm trying to use this in the company I work for but the amount charged by them makes it impossible since the company I work for is big but the application I'm creating is for a specific area where the application will be used by few users...
Hi David,
We are pleased you like our tools! Can you contact us at marketingteam@syncfusion.com to see what we can do to help with pricing?
but when i click on the create excel button it is not showing the excel sheet
Hi,
Thank you for reaching out to us.
Syncfusion does not support Spreadsheet viewer in the Flutter platform. We suggest using Microsoft Excel to view the generated Excel document.
AMAZING
Thanks Julio! We're glad you like it. 👍
Thanks! It really helps me .but Is It free?
Hello Mr.S Gamer,
Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
bit.ly/395t17c
Good library
Could you please explain how to add rows ?
Hi Manu,
Thanks for reaching out and watching our video. Please refer to the following UG link to insert rows and columns,
help.syncfusion.com/flutter/xlsio/worksheet-rows-and-columns-manipulation#insert-rows-and-columns
@@SyncfusionInc thanks i got the point
We are glad that you have found it helpful.
Sir, flutter Ecommerce app UI DESIGN Plz
Hi DevKamal,
Sorry, we don’t have an Ecommerce application in Flutter. We provide custom control in Flutter and the users can design their application as desired using our widgets.
If you have any queries in using our controls, we recommend you to use the support chat on our website or opening a ticket. www.syncfusion.com/support/directtrac/incidents/newincident
Thank you.
how to export a list of data to excel
Hi Krishna,
Thank you for watching our video. You can refer to the following help link to import data from the list,
help.syncfusion.com/flutter/xlsio/working-with-data#import-data-from-listt
how to print mysql data into excel in flutter
Hello,
We can look into this and get back to you but response times via our TH-cam videos are slower than our regular support. Have you opened a support ticket or tried our live chat? www.syncfusion.com/support/directtrac/incidents/newincident
If you have a retail or flat license, you also have access to our support chat.
Please export the MySQL data to a collection object and import it as Excel since Syncfusion Flutter XlsIO Library does not have a direct option to print data from MySQL. Kindly go through the below link to know about importing data into Excel.
help.syncfusion.com/flutter/xlsio/working-with-data
how do i add rows i don't want to be getting a range like this everytime sheet.getRangeByName('A1').setText('head'), i just want to dynamically add values to the first ranges from A1 to Z1 .
Hi,
We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
www.syncfusion.com/support/directtrac/incidents/newincident
We will check on this with our team and post a response but it will take a little time.
Thanks for your question!
We are unable to reproduce the issue at our end. The Excel file is correctly opened using the Excel app. So, kindly share a sample illustrating the reported issue, or else share the code snippet you are using at your end, which would help us proceed further.
Is this a paid library?
Hello Bobby Jose,
Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
bit.ly/395t17c
I have problem with this....
- the generated workbook can only be opened by google sheet app in android device.
- if I open with excel app in android device, the generated workbook is corrupted.
I wonder if anyone has similar problem and have any idea about it
Hi,
We're happy to look at this. For the fastest response to technical questions, we recommend opening a support ticket so we can exchange files and screenshots.
www.syncfusion.com/support/directtrac/incidents/newincident
We will check on this with our team and post a response but it will take a little time.
Thanks for your question!
@@SyncfusionInc will do thx
Kindly use the following code snippet to assign the value for the range.
Code snippet:
sheet.getRangeByName('A1:Z1').setText(‘head’);
Nice
Hi Dhiraj Kumar,
Thank you for watching our video.
We are happy you have found it helpful.
Not opening excel
Hi,
We have included the fix to resolve the reported issue in our weekly Flutter release version 24.1.46. Kindly upgrade your Syncfusion packages to this new 24.1.46 version and let us know if the issue is resolved.
Flutter Package: pub.pulse.ly/y4ohhulpzf
It is not working
Hi,
We have included the fix to resolve the reported issue in our weekly Flutter release version 24.1.46. Kindly upgrade your Syncfusion packages to this new 24.1.46 version and let us know if the issue is resolved.
Flutter Package: pub.pulse.ly/ofc0peoaf0
Great bro can you make video shows get data from mysql to excel.
Hi Hassan,
Thank you for watching our video. We really appreciate your suggestion. We will pass this along to our team.
Thanks I am waiting for your great team
Hi Hassan,
Thank you. Let us know if you have any other questions. We are happy to assist. Have a wonderful week.
@@SyncfusionInc
Actually I have data from json
I have table of students with id ,names , subjects average, etc. many columns and many rows.
I just want to insert all these datat to excel and present data in a chart.
Hi hassan sadeq,
For the fastest response to technical questions, we recommend using the support chat on our website or opening a ticket so we can exchange files and screenshots. www.syncfusion.com/support/directtrac/incidents/newincident
We will check on this with our team and post a response but it will take a little time.
Thanks for your question!
is it paid? :(
Hello jonnathan yesid,
Our paid and free versions both have the same features and support. You can check here to see if you qualify for our Community (free) license. It's available for companies with 5 or fewer developers and less than $1 Mil USD in annual revenue.
bit.ly/395t17c
create a docx documents in flutter tutorial video post
Hi,
Currently, Syncfusion Word library (DocIO) doesn’t support creating DOCX format documents in Flutter. We do not have any immediate plans to implement this.
Their support team is so rude. Just waste of time