We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Hello!
I have trying create a slide with both image and chart, but it cause an error when trying to open the downloaded ppt. Could you help me, please?
PowerPoint version 2016 PptxGenJS version 3.0.1
Code sample is below:
const pptx = new PptxGenJS(); const slide = pptx.addSlide(); slide.addImage({ path:'https://upload.wikimedia.org/wikipedia/en/a/a9/Example.jpg', x:4, y:1, w:6, h:4 }); const dataChartRadar = [ { name : 'Region 1', labels: ['May', 'June', 'July', 'August', 'September'], values: [26, 53, 100, 75, 41] } ]; slide.addChart( pptx.charts.RADAR, dataChartRadar, { x:0.5, y:0.6, w:4.0, h:2, radarStyle:'standard' } ); pptx.writeFile("example");
This is what is displayed when open ppt and what is on the slide:
Thank you in advance!
The text was updated successfully, but these errors were encountered:
added Issue #655
c2fc68b
Fixed relId problem (Issue #655)
8ac00d2
@JuliaSheleva - thanks for reporting this and for the clear details.
Issue is now resolved via new method to return relID on demand to all library methods insuring consistency in ID generation.
Sorry, something went wrong.
added Issue gitbrent#655
e75cf80
Fixed relId problem (Issue gitbrent#655)
3b669de
gitbrent
No branches or pull requests
Hello!
I have trying create a slide with both image and chart, but it cause an error when trying to open the downloaded ppt.
Could you help me, please?
PowerPoint version 2016
PptxGenJS version 3.0.1
Code sample is below:
This is what is displayed when open ppt and what is on the slide:
Thank you in advance!
The text was updated successfully, but these errors were encountered: