Vue Common - Object Structures - PdfCell - font

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

Type:

Object

App.vue
  • <template>
  • <div>
  • <DxButton ...
  • @click="exportGrid()"
  • />
  •  
  • <DxDataGrid ...
  • :ref="dataGridRef">
  • <!-- ... -->
  • </DxDataGrid>
  • </div>
  • </template>
  •  
  • <script>
  • import 'devextreme/dist/css/dx.light.css';
  •  
  • import DxDataGrid from 'devextreme-vue/data-grid';
  • import DxButton from 'devextreme-vue/button';
  • import { jsPDF } from 'jspdf';
  • import { exportDataGrid as exportDataGridToPdf } from 'devextreme/pdf_exporter';
  •  
  • const dataGridRef = 'dataGrid';
  •  
  • export default {
  • components: {
  • DxDataGrid,
  • DxButton
  • },
  • data() {
  • return {
  • dataGridRef
  • };
  • },
  • computed: {
  • dataGrid: function() {
  • return this.$refs[dataGridRef].instance;
  • }
  • },
  • methods: {
  • exportGrid() {
  • const doc = new jsPDF();
  • exportDataGridToPdf({
  • jsPDFDocument: doc,
  • component: this.dataGrid,
  • customizeCell: function(options) {
  • const { gridCell, pdfCell } = options;
  •  
  • if(gridCell.rowType === 'data') {
  • pdfCell.font = { size: 20, style: 'bold', name: 'Arial' };
  • }
  • }
  • }).then(() => {
  • doc.save('Customers.pdf');
  • });
  • }
  • }
  • }
  • </script>

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'