daniel-s
4/26/2016 - 8:07 AM

Bootstrap print. http://stackoverflow.com/a/18976479/3149679

Bootstrap comes with some CSS styles for printing:

.visible-print {
    display: block !important;
}

.hidden-print {
    display: none !important;
}

There is also the page-break css rule to separate elements in different pages:

div.somechart { 
   page-break-after: always; 
   page-break-inside: avoid;
}