PptxGenJS
PptxGenJS copied to clipboard
Create PowerPoint presentations with a powerful, concise JavaScript API.
## Issue I'm using pptxgenjs 2.3.0. I create two PPTX files using the same shared slide master configuration, which contains a placeholder: ```javascript const PptxGenJS = require('pptxgenjs'); const SLIDE_MASTER =...
@gitbrent Is it possible to insert images or shapes in a cell. Say there is a number 13 with a small Apple or circle next to it, is it possible?
### Category - [ ] Enhancement - [x] Bug - [ ] Question - [ ] Documentation gap/issue ### Version Please specify what version of the library you are using:...
Hi Gitbrent, I have used addTable method to add tables. Also I used autoPage into true to extend the table if it is overflow the slide. But autoPage option is...
Added an option to set different lineDataSymbols per data set.  Example ``` const PptxGenJS = require('./dist/pptxgen.js'); var pptx = new PptxGenJS(); var slide = pptx.addNewSlide(); //...
### Category - [ ] Enhancement - [ ] Bug - [x] Question - [ ] Documentation gap/issue ### Version - What version of the library you are using: [`latest`]...
In some cases the automatic legend position from Powerpoint is not very good (it overlaps with the actual chart), thus allowing to specify a legend layout in the same way...
I'm looking for a way to combine multiple data sets with my own array of colors. An idea is to check for the presence of an array of arrays in...
I have a master slide that contains a table and a placeholder, with the table set to `autoPage` when the table extends a certain number of rows. I am able...