Thank you for reporting an issue, suggesting an enhancement, or asking a question.
We appreciate your feedback - to help the team understand your needs please complete the below template to ensure we have the details to help. Thanks!
Please check out the Docs to see if your question is already addressed there. This will help us ensure our documentation covers the most frequent questions.
Category
Version
Please specify what version of the library you are using: [ 3.2.1 ]
Please specify what version(s) of PowerPoint you are targeting: [ PowerPoint 360 ]
Expected / Desired Behavior / Question
I would like to create a table with a cell containing a list of bullet points linked to different sites.
Observed Behavior
When using the recommended syntax, the generated pptx is corrupt. Powerpoint will repair it, but the links will be gone.
Steps to Reproduce
Try with this code:
var pptx = new PptxGenJS();
var slide = pptx.addSlide();
var rows=[];
rows.push([
{text: 'Sites', options: {fontFace: 'Arial', fontSize: 16, fill: 'F2F2F2',
color: '404040', bold: true, align: 'center', valign: 'middle'}}]);
var arrText = [
{text: "google", options: {bullet: true, hyperlink:{url:'https://www.google.com'}}},
{text: "facebook", options: {bullet: true, hyperlink:{url:'https://www.facebook.com'}}},
{text: "ebay", options: {bullet: true, hyperlink:{url:'https://www.ebay.com'}}}
];
rows.push([{text: arrText, options:{color:'000000'}}]);
slide.addTable(rows);
pptx.writeFile('PptxGenJS-Sandbox-'+getTimestamp())
.then(function(fileName){ console.log('Saved! File Name: '+fileName) });
Thanks for your help!