我正在使用AlaSql版本0.4.2。我通过以下方式导出excel:
var mystyle = {
headers: true,
sheetid: 'Counter Correction',
};
//Create XLS format using alasql.js file.
var excelHistoricalFileName = "HistoricalDataExport_" + $rootScope.Park_Name + "_" + $rootScope.turbineName + "_" + $rootScope.selectedTurbineSerialNum + ".xls";
var excelObj = alasql('SELECT * INTO XLS("' + excelHistoricalFileName + '",?) FROM ?', [mystyle, data]);
附加输出excel以供链接参考:https://github.com/agershun/alasql/issues/966
我需要通过alasql格式化选项进行以下操作:
第1行,A列和B列应该冻结。
所有列都应按照屏幕截图中的说明进行角度对齐。 ExcelFormatting.png