Advertisement
Guest User

Untitled

a guest
Jun 26th, 2019
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.53 KB | None | 0 0
  1. menu: {
  2. exportPdf: {
  3. text: 'Export PDF',
  4. icon: OrgChart.icon.pdf(24,24),
  5. onClick: function(){chart.exportPDF({
  6. extraHtml: document.getElementById('myStyles').outerHTML
  7. })}
  8. }
  9. },
  10.  
  11. <style id="myStyles">
  12. .node{
  13. font-family: Helvetica;
  14. }
  15. .node.QA rect {
  16. fill: #ffffff;
  17. }
  18.  
  19. .node.QA text {
  20. fill: #F57C00;
  21. }
  22.  
  23.  
  24. .node.Marketing rect {
  25. fill:#ffffff;
  26. }
  27.  
  28. .node.Marketing text {
  29. fill: #FFCA28;
  30. }
  31. </style>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement