Generating Excel File in Angular 9 using “ExcelJs” with Custom Font Family | Devstringx Technologies

Devstringx Technologies
7 min readMay 31, 2021

Creating a new Angular Project

Let’s create a new Angular project using the Angular CLI tool by running/executing the following angular CLI command

  • ng new export-to-excel
  • Would you like to add Angular routing? Yes
  • Which stylesheet format would you like to use? SCSS

What’s ExcelJS?

ExcelJS is the Javascript library used to read, write and manipulate the excel spreadsheet data and styles to JSON and XLSX. We can create XLSX files easily with formatted headers, footers, cells, and input any custom data including text, images, etc. It’s an active and community-driven library with many features.

Features of ExcelJS

Here are some of the awesome features of Excel JS:-

  1. View, Add, Remove, Access Worksheets, and also set the Worksheet States like hidden, visible, veryHidden.
  2. Page setup of a worksheet includes orientation, margins, height, width, print area.
  3. Headers and Footers configuration of the worksheet with custom style, font, color, etc.
  4. Worksheet Views to Freeze & Split sections.
  5. Merging the group of cells or Handling individual cells.
  6. Cell level data validation support.
  7. Tables and Comments on worksheets.
  8. Customized styling includes fonts, fill, border, alignment, size, gradient fills, etc.
  9. Images in the worksheet can be added using the addImage() function.
  10. File Input Output for Reading and writing of CSV & XLSX.
  11. ES5 Support, can be used in the simple HTML pages for some reactive applications like Angular, React, .Net, Java and NodeJS.

Install ExcelJs

To install the ExcelJs package execute the following command, which is the main player to deal with Excel format related functionalities we want to achieve

  • npm install –save exceljs@1.12.0

For more info or reference, you can check https://www.npmjs.com/package/exceljs this link.

Install FileSaver

We require FileSave.js to deal with operations like saving files on the disk. It is mainly used in web applications to store large files in the system.

Run the following command to install the file-saver

  • npm install –save file-saver

Configure tsconfig.json

Open the tsconfig.json file at the project root, then add the “paths” property under the “compiler options” with “excelJs” library location

tsconfig.json

“compiler options”: {

“paths”: {

“exceljs”: [

“node_modules/exceljs/dist/exceljs.min”

]}}

Create a Service for ExcelJs

Now we’ll create a new service to keep the Excel-related method in one place so that we don’t have to write the whole code again and again for one functionality. To generate excel service in the service folder execute the following command.

  • ng generate service services/excel

This will create an ExcelService under the services folder

Update the ExcelService

Now open the excel.service.ts file inside the services folder and make the following changes:

import { Workbook } from ‘exceljs’;

import * as fs from ‘file-saver’;

We will create a separate method in excel.service.ts called generate excel().

Now we will give Title to the excel File Like “User Data”

So, we will just declare a variable named Title and give value to it.

const title = ‘User Data’

now, we will set the header and values of the column randomly

let’s suppose we have a JSON like

const userList = [

{

name: ‘Rakesh’,

designation: ‘Software Developer’,

address: ‘Delhi’,

gender: ‘Male’

},

{

name: ‘Kapil’,

designation: ‘QA’,

address: ‘Noida’,

gender: ‘Male’

}, {

name: ‘Sunita’,

desgination: ‘HR’,

address: ‘Gurgaon’,

gender: ‘Female’

}

]

For setting the header randomly from keys of JSON, we will use

const header = Object.keys(userList[0])

This will take all the keys from 0 index from the JSON and then Object.keys() method will return the keys of 0 index from the JSON into the header variable in the form of an array.

Create Workbook and Add Worksheet

Create a new workbook and add a new worksheet using add worksheet() method of Workbook.

const workbook = new Workbook()

const worksheet = workbook.add worksheet(‘User Report’)

Add Row and format the fonts

Now, we want to use the “Custom Font” Family in the excel file so first, we will download the custom font from the web. For example, I want to use Saysettha OT font in our excel file so I will download this font from https://laoscript.net/download/ this link.

Note: You can download any font from any website, you just need to install it in the system, we will tell you how to install the font in the system below

After downloading the font, let’s install the font in the system

  1. Search Font Settings in the search bar

2. Now drag and drop the download file below the Add fonts section

After dropping the font file, the system will automatically install the font in the system and you can check this font in the excel sheet in the font dropdown.

Adding custom font into the project

  1. Go inside the assets folder inside the app folder
  2. Create a folder named excel font
  3. Copy and paste the download font file inside the excel font folder, it will look like this

4. Now we have to add a font-face to bind the download file with a name so that we can use it in the entire application

5. Go to index.html page and then add

<style>
@font-face {

font-family: ‘Saysettha OT’;

src:

url(‘./assets/fonts/excelfont/saysettha_ot.ttf’) format(‘truetype’);}

</style>

It will look like this

Read:- Angular Project Setup by Angular CLI Tool

Let’s resume to the excel.service.ts now

  1. Let’s add a title row with our custom font

const title row = worksheet.addRow([title])

title row.font = { name: ‘Saysettha OT’, family: 4, size: 16, bold: true }

It will add a row with the title that we have provided above with our custom font family, here the name represents the name of the font-family that we want to use in the excel file, we have added our custom font with the font-face Saysettha OT.

Note: Make sure you must enter the exact value in the name that you have entered in the font-family attribute inside the @font-face

  1. Adding Header in a new row with custom font

worksheet.addRow([])

const headerRow = worksheet.addRow(header)

headerRow.eachCell(cell => {

cell.font = { name: ‘Saysettha OT’, bold: true }

}

Note: you must give custom font to every row.

  1. Add Data in excel with custom font

userList.forEach(d => {

let row = worksheet.addRow(Object.values(d))

row.font = { name: ‘Saysettha OT’ }

})

Export file using FileSaver

workbook.xlsx.writeBuffer().then(excelData => {

const blob = new Blob([excelData], { type: ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet’ })

fs.saveAs(blob, ‘UserReport.xlsx’)

})

Read:- How To Use Google Maps In Your Angular Application

Your final code will look like this

tsconfig.js

{

“compileOnSave”: false,

“compilerOptions”: {

“baseUrl”: “./”,

“outDir”: “./dist/out-tsc”,

“sourceMap”: true,

“declaration”: false,

“downlevelIteration”: true,

“experimentalDecorators”: true,

“module”: “esnext”,

“moduleResolution”: “node”,

“importHelpers”: true,

“target”: “es2015”,

“lib”: [

“es2018”,

“dom”

],

“paths”: {

“exceljs”: [

“node_modules/exceljs/dist/exceljs.min”

]

}

},

“angularCompilerOptions”: {

“fullTemplateTypeCheck”: true,

“strictInjectionParameters”: true

}

}

app.component.ts

import { Component } from ‘@angular/core’;

import { ExcelService } from ‘./excel.service’;

@Component({

selector: ‘app-root’,

templateUrl: ‘./app.component.html’,

styleUrls: [‘./app.component.css’]

})

export class AppComponent {

constructor(private excelService: ExcelService) {}

generateExcel() {

this.excelService.generateExcel();

}

}

app.component.html

<button (click)=”generateExcel()”> Generate Excel</button>

excel.service.ts

import { Injectable } from ‘@angular/core’

import { Workbook } from ‘exceljs’

import * as fs from ‘file-saver’

@Injectable({

providedIn: ‘root’

})

export class ExcelService {

constructor() { }

generateExcel() {

const userList = [

{

name : ‘Rakesh’,

designation: ‘Software Developer’,

address: ‘Delhi’,

gender: ‘Male’

},

{

name: ‘Kapil’,

designation: ‘QA’,

address: ‘Noida’,

gender: ‘Male’

}, {

name: ‘Sunita’,

desgination: ‘HR’,

address: ‘Gurgaon’,

gender: ‘Female’

}

]

const title = ‘User Data’

const header = Object.keys(userList[0])

const workbook = new Workbook()

const worksheet = workbook.addWorksheet(‘User Report’)

// Add new row

const titleRow = worksheet.addRow([title])

// Set font family, font size, and style in title row.

titleRow.font = { name: ‘Saysettha OT’, family: 4, size: 16, bold: true }

// Blank Row

worksheet.addRow([])

// Add Header Row

const headerRow = worksheet.addRow(header)

// Cell Style : Fill and Border

headerRow.eachCell(cell => {

cell.font = { name: ‘Saysettha OT’, bold: true }

})

// Add Data and Conditional Formatting

userList.forEach(d => {

let row = worksheet.addRow(Object.values(d))

row.font = { name: ‘Saysettha OT’ }

})

workbook.xlsx.writeBuffer().then(excelData => {

const blob = new Blob([excelData], { type: ‘application/vnd.openxmlformats-officedocument.spreadsheetml.sheet’ })

fs.saveAs(blob, ‘UserReport.xlsx’)

})

}

}

.

.

Originally published at https://www.devstringx.com on May 31, 2021

--

--

Devstringx Technologies

Devstringx Technologies is highly recommended IT company for custom software development, mobile app development and automation testing services