Ziv-Barber / officegen

Standalone Office Open XML files (Microsoft Office 2007 and later) generator for Word (docx), PowerPoint (pptx) and Excell (xlsx) in javascript. The output is a stream.
MIT License
2.65k stars 471 forks source link

More options for tables #348

Closed apsavin closed 4 years ago

apsavin commented 4 years ago
  1. Possibility to create page-wide tables with tableWidth table option
  2. Possibility to merge table cells vertically with vMerge cell option
Rackar commented 4 years ago

@apsavin Thank you for the vMerge option! Would you like to give a small example code to user it?

[1, 'first'], [2, '', { val: 'second.', opts: { vMerge: 2 } }], [3, ''],

I tryed this, and nothing happened.

Rackar commented 4 years ago

got this. from http://officeopenxml.com/WPtableCellProperties.php

    [{ val: 'I have two spans.', opts: { gridSpan: 2 } }, { val: '3', opts: { vMerge: 'restart' } }],
    [4, 'watch out for the baobabs!', { opts: { vMerge: 'continue' } }]

image