python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
How can I print these dynamic data in jsPDF?
I have these example data:
{
lastName: "dasdasd",
totalAmount: 400,
cartItems: [
{
color: "Black",
size: "500",
quantity: 2,
...
JS3
Votes: 0
Answers: 1
html2canvas and jspdf is not working with mat-select multiple option
downloadPdf() {
var element = document.querySelector('.myTable');
html2canvas(document.querySelector('.myTable')).then((canvas) => {
var imgData = canvas.toDataURL('image/jpeg', 1...
Reena Singh
Votes: 0
Answers: 1
How do I fetch the current Y cursor in jsPDF autotable?
My code:
if(table!=null){
if(table.rows.length>1){
doc.autoTable({
html: '#news_pos_details',
startX: 50,
startY: 144,
theme: 'grid',
...

user18554465
Votes: 0
Answers: 1
Creating sequential numbers in the auto table jspdf column VusJs
columns: [
{
header: 'No',
dataKey: 'Index',
},
{ header: 'No Registrasi', dataKey: 'no_register' },
{ header: 'Kode Partai', dataKey: 'kode_partai' },
...
indriyanto Nugroho
Votes: 0
Answers: 1