Hi Nithiz,
What Rahul means is create a new screen with only the data no other elements (No header, footer, filters, etc).
Alternatively you could try with css.
Add the following to your stylesheet
@media print
{
.no-print, .no-print *
{
display: none !important;
}
}
Then add the 'no-print' class to all elements you don't want printed
(Quick note, in this case Rahul's solution is better)