PptxGenJS
PptxGenJS copied to clipboard
Bullet option in placeholder definition not working
I use version 3.0.1
Bullets are not working when used in a master slide for the definition of a placeholder
{ 'placeholder': {
options: { bullet:true, name:'desc', x:0.47, y:1.8, w:3, h:.2, fontSize:8},
text: ''
}
If used without a placeholder they are working.
I have the same issue. I analyzed the generated pptx file and for some reason txBody has this:
<a:pPr>
<a:buNone/>
</a:pPr>
instead of for example this:
<a:pPr indent="-342900" marL="342900">
<a:buSzPct val="100000"/>
<a:buChar char="•"/>
</a:pPr>
The following PR fixes the issue, but not completely. Only the first item has a bullet.
https://github.com/gitbrent/PptxGenJS/pull/620
Before and after screenshots.
