Advertisement
Guest User

Untitled

a guest
Dec 10th, 2019
139
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.39 KB | None | 0 0
  1. // playground requires you to assign document definition to a variable called dd
  2.  
  3. var dd = {
  4. content: [
  5. {
  6. columns: [
  7. {
  8. width: "30%",
  9. table: {
  10. headerRows: 1,
  11. widths: [ 40, 40, 40 ],
  12.  
  13. body: [
  14. [ "First", "Second", "Third" ],
  15. [ "Value 1", "Value 2", "Value 3" ]
  16. ]
  17. }
  18. },
  19. {
  20. width: "30%",
  21. table: {
  22. headerRows: 1,
  23. widths: [ 40, 40, 40 ],
  24.  
  25. body: [
  26. [ "First", "Second", "Third" ],
  27. [ "Value 1", "Value 2", "Value 3" ]
  28. ]
  29. }
  30. },
  31. {
  32. width: "30%",
  33. table: {
  34. headerRows: 1,
  35. widths: [ 40, 40, 40 ],
  36.  
  37. body: [
  38. [ "First", "Second", "Third" ],
  39. [ "Value 1", "Value 2", "Value 3" ]
  40. ]
  41. }
  42. }
  43. ]
  44.  
  45. }
  46. ]
  47.  
  48. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement