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? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Border: [ {type:"none", color:'FF0000',pt:1}, {type:"dash", color:'FF0000',pt:1}, {type:"none",color:'0000ff',pt:5}, {type:"dash",color:'9e9e9e',pt:1} ];
Multiple border styles not working.
The text was updated successfully, but these errors were encountered:
Good catch, i did not have a test case for multi-border that used type:none
type:none
Sorry, something went wrong.
All new table/cell border code (fix for Issue #775)
fab9390
added Issue #775
69e4baf
Fixed in master/v3.3.0
var pptx = new PptxGenJS(); var slide = pptx.addSlide(); slide.addTable( [ [ { text: "cell", options: { border: [ { type: "none", color: "FF0000", pt: 1 }, { type: "dash", color: "FF0000", pt: 1 }, { type: "none", color: "0000ff", pt: 5 }, { type: "dash", color: "9e9e9e", pt: 1 }, ], }, }, ], ], { x: 1, y: 1, w: "80%", h: 3, align: "center", fill: pptx.SchemeColor.background2 } ); pptx.writeFile("PptxGenJS-Sandbox-" + getTimestamp()).then(function (fileName) { console.log("Saved! File Name: " + fileName); });
gitbrent
No branches or pull requests
Multiple border styles not working.
The text was updated successfully, but these errors were encountered: