Angular Common - Object Structures - PdfCell - font

An object that contains information about the font's size, name, and style.

Type:

Object

app.component.html
app.component.ts
app.module.ts
  • <dx-button ...
  • (onClick)="exportGrid($event)">
  • </dx-button>
  •  
  • <dx-data-grid ... >
  • <!-- ... -->
  • </dx-data-grid>
  • import { Component } from '@angular/core';
  • import { exportDataGrid as exportDataGridToPdf } from 'devextreme/pdf_exporter';
  • import { jsPDF } from 'jspdf';
  •  
  • @Component({
  • selector: 'app-root',
  • templateUrl: './app.component.html',
  • styleUrls: ['./app.component.css']
  • })
  • export class AppComponent {
  • @ViewChild(DxDataGridComponent, { static: false }) dataGrid: DxDataGridComponent;
  •  
  • exportGrid() {
  • const doc = new jsPDF();
  • exportDataGridToPdf({
  • jsPDFDocument: doc,
  • component: this.dataGrid.instance,
  • customizeCell: function(options) {
  • const { gridCell, pdfCell } = options;
  •  
  • if(gridCell.rowType === 'data') {
  • pdfCell.font = { size: 20, style: 'bold', name: 'Arial' };
  • }
  • }
  • }).then(() => {
  • doc.save('Customers.pdf');
  • })
  • }
  • }
  • import { BrowserModule } from '@angular/platform-browser';
  • import { NgModule } from '@angular/core';
  • import { AppComponent } from './app.component';
  •  
  • import { DxDataGridModule, DxButtonModule } from 'devextreme-angular';
  •  
  • @NgModule({
  • declarations: [
  • AppComponent
  • ],
  • imports: [
  • BrowserModule,
  • DxDataGridModule,
  • DxButtonModule
  • ],
  • providers: [ ],
  • bootstrap: [AppComponent]
  • })
  • export class AppModule { }

name

Specifies the font name.

Type:

String

Default font names:

  • Courier
  • Courier-Bold
  • Courier-BoldOblique
  • Courier-Oblique
  • Helvetica
  • Helvetica-Bold
  • Helvetica-BoldOblique
  • Helvetica-Oblique
  • Symbol
  • Times-Roman
  • Times-Bold
  • Times-Italic
  • Times-BoldItalic

size

Specifies the font size.

Type:

Number

Default Value: 10

style

Specifies the font style.

Type:

String

Default Value: 'normal'
Accepted Values: 'normal' | 'bold' | 'italic'