All Projects → gitbrent → xlsx-js-style

gitbrent / xlsx-js-style

Licence: Apache-2.0 license
SheetJS Community Edition + Basic Cell Styles

Projects that are alternatives of or similar to xlsx-js-style

easy-excel
🚀 快速读写Excel文件,简单高效
Stars: ✭ 118 (-8.53%)
Mutual labels:  excel, xlsx
Qxlnt
Use xlnt in Qt 5 or 6. xlnt is cross-platform user-friendly xlsx library for C++14.
Stars: ✭ 66 (-48.84%)
Mutual labels:  excel, xlsx
Documentserver
ONLYOFFICE Document Server is an online office suite comprising viewers and editors for texts, spreadsheets and presentations, fully compatible with Office Open XML formats: .docx, .xlsx, .pptx and enabling collaborative editing in real time.
Stars: ✭ 2,335 (+1710.08%)
Mutual labels:  excel, xlsx
Xresloader
跨平台Excel导表工具(Excel=>protobuf/msgpack/lua/javascript/json/xml)
Stars: ✭ 161 (+24.81%)
Mutual labels:  excel, xlsx
xlsx-reader
xlsx-reader is a PHP library for fast and efficient reading of XLSX spreadsheet files. Its focus is on reading the data contained within XLSX files, disregarding all document styling beyond that which is strictly necessary for data type recognition. It is built to be usable for very big XLSX files in the magnitude of multiple GBs.
Stars: ✭ 40 (-68.99%)
Mutual labels:  excel, xlsx
Excelmapper
Map POCO objects to Excel files
Stars: ✭ 166 (+28.68%)
Mutual labels:  excel, xlsx
Closedxml
ClosedXML is a .NET library for reading, manipulating and writing Excel 2007+ (.xlsx, .xlsm) files. It aims to provide an intuitive and user-friendly interface to dealing with the underlying OpenXML API.
Stars: ✭ 2,799 (+2069.77%)
Mutual labels:  excel, xlsx
Xlsx
Fast and reliable way to work with Microsoft Excel™ [xlsx] files in Golang
Stars: ✭ 132 (+2.33%)
Mutual labels:  excel, xlsx
Sylvan.Data.Excel
The fastest .NET library for reading Excel data files.
Stars: ✭ 65 (-49.61%)
Mutual labels:  excel, xlsx
spreadcheetah
SpreadCheetah is a high-performance .NET library for generating spreadsheet (Microsoft Excel XLSX) files.
Stars: ✭ 107 (-17.05%)
Mutual labels:  excel, xlsx
Writexl
Portable, light-weight data frame to xlsx exporter for R
Stars: ✭ 162 (+25.58%)
Mutual labels:  excel, xlsx
xls2db
Export table data from excel to mysql database, implemented with python.
Stars: ✭ 33 (-74.42%)
Mutual labels:  excel, xlsx
Test files
📚 SheetJS Test Files (XLS/XLSX/XLSB and other spreadsheet formats)
Stars: ✭ 150 (+16.28%)
Mutual labels:  excel, xlsx
Xlsxir
Xlsx parser for the Elixir language.
Stars: ✭ 167 (+29.46%)
Mutual labels:  excel, xlsx
Vue Xlsx Table
Not need upload, view xlsx or xls file in your browser, Supported by js-xlsx.
Stars: ✭ 136 (+5.43%)
Mutual labels:  excel, xlsx
Fast excel
Ultra Fast Excel Writer for Ruby
Stars: ✭ 181 (+40.31%)
Mutual labels:  excel, xlsx
Xlsx
Simple and incomplete Excel file parser/writer
Stars: ✭ 110 (-14.73%)
Mutual labels:  excel, xlsx
Php Ext Xlswriter
🚀 PHP Extension for creating and reader XLSX files.
Stars: ✭ 1,734 (+1244.19%)
Mutual labels:  excel, xlsx
xlstream
Turns XLSX into a readable stream.
Stars: ✭ 148 (+14.73%)
Mutual labels:  excel, xlsx
laravel-xlswriter
an excel export/import tool for laravel based on php-xlswriter
Stars: ✭ 54 (-58.14%)
Mutual labels:  excel, xlsx

xlsx-js-style

ℹ️ About

SheetJS with Style! Create Excel spreadsheets with basic styling options using JavaScript.

xlsx-js-style sheetjs styles


Known Vulnerabilities npm downloads typescripts definitions

🔌 Installation

Install npm:

npm install xlsx-js-style

Install browser:

<script src="dist/xlsx.bundle.js"></script>

🗒 Core API

  • Refer to the SheetJS documentation for core API reference
  • Current version of sheetjs used: 0.18.5

🗒 Style API

Cell Style Example

// STEP 1: Create a new workbook
const wb = XLSX.utils.book_new();

// STEP 2: Create data rows and styles
let row = [
	{ v: "Courier: 24", t: "s", s: { font: { name: "Courier", sz: 24 } } },
	{ v: "bold & color", t: "s", s: { font: { bold: true, color: { rgb: "FF0000" } } } },
	{ v: "fill: color", t: "s", s: { fill: { fgColor: { rgb: "E9E9E9" } } } },
	{ v: "line\nbreak", t: "s", s: { alignment: { wrapText: true } } },
];

// STEP 3: Create worksheet with rows; Add worksheet to workbook
const ws = XLSX.utils.aoa_to_sheet([row]);
XLSX.utils.book_append_sheet(wb, ws, "readme demo");

// STEP 4: Write Excel file to browser
XLSX.writeFile(wb, "xlsx-js-style-demo.xlsx");

Cell Style Properties

  • Cell styles are specified by a style object that roughly parallels the OpenXML structure.
  • Style properties currently supported are: alignment, border, fill, font, numFmt.
Style Prop Sub Prop Default Description/Values
alignment vertical bottom "top" or "center" or "bottom"
horizontal left "left" or "center" or "right"
wrapText false true or false
textRotation 0 0 to 180, or 255 // 180 is rotated down 180 degrees, 255 is special, aligned vertically
border top { style: BORDER_STYLE, color: COLOR_STYLE }
bottom { style: BORDER_STYLE, color: COLOR_STYLE }
left { style: BORDER_STYLE, color: COLOR_STYLE }
right { style: BORDER_STYLE, color: COLOR_STYLE }
diagonal { style: BORDER_STYLE, color: COLOR_STYLE, diagonalUp: true/false, diagonalDown: true/false }
fill patternType "none" "solid" or "none"
fgColor foreground color: see COLOR_STYLE
bgColor background color: see COLOR_STYLE
font bold false font bold true or false
color font color COLOR_STYLE
italic false font italic true or false
name "Calibri" font name
strike false font strikethrough true or false
sz "11" font size (points)
underline false font underline true or false
vertAlign "superscript" or "subscript"
numFmt 0 Ex: "0" // integer index to built in formats, see StyleBuilder.SSF property
Ex: "0.00%" // string matching a built-in format, see StyleBuilder.SSF
Ex: "0.0%" // string specifying a custom format
Ex: "0.00%;\\(0.00%\\);\\-;@" // string specifying a custom format, escaping special characters
Ex: "m/dd/yy" // string a date format using Excel's format notation

COLOR_STYLE {object} Properties

Colors for border, fill, font are specified as an name/value object - use one of the following:

Color Prop Description Example
rgb hex RGB value {rgb: "FFCC00"}
theme theme color index {theme: 4} // (0-n) // Theme color index 4 ("Blue, Accent 1")
tint tint by percent {theme: 1, tint: 0.4} // ("Blue, Accent 1, Lighter 40%")

BORDER_STYLE {string} Properties

Border style property is one of the following values:

  • dashDotDot
  • dashDot
  • dashed
  • dotted
  • hair
  • mediumDashDotDot
  • mediumDashDot
  • mediumDashed
  • medium
  • slantDashDot
  • thick
  • thin

Border Notes

Borders for merged areas are specified for each cell within the merged area. For example, to apply a box border to a merged area of 3x3 cells, border styles would need to be specified for eight different cells:

  • left borders (for the three cells on the left)
  • right borders (for the cells on the right)
  • top borders (for the cells on the top)
  • bottom borders (for the cells on the left)

🙏 Thanks

This project is a fork of SheetJS/sheetjs combined with code from sheetjs-style (by ShanaMaid) and sheetjs-style-v2 (by Raul Gonzalez).

All projects are under the Apache 2.0 License

🔖 License

Please consult the attached LICENSE file for details. All rights not explicitly granted by the Apache 2.0 License are reserved by the Original Author.

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].