Home Forums Chart Support Print with text underneath Reply To: Print with text underneath

#28306

I managed to hide the icon when printing using css media queries

@media print {
    .canvasjs-chart-toolbar {
       display: none;
     }
}