function readOnly(count){ }
Starting November 20, the site will be set to read-only. On December 4, 2023,
forum discussions will move to the Trailblazer Community.
+ Start a Discussion
sfdc fishsfdc fish 

Unable to remove report header in lightning.

AM trying to embed report in Aura component using iframes ,thing is am getting report with lightning header.I need to remove header as we do in classic by using isdtp,is there any way to get same in lightning?
Here below is the component code which I done.
<aura:component implements="force:appHostable,flexipage:availableForAllPageTypes,flexipage:availableForRecordHome,force:hasRecordId,forceCommunity:availableForAllPageTypes,force:lightningQuickAction" access="global" >           
<div style="overflow:hidden;">
 <iframe id="reportFrame"  name="test" src="/one/one.app?source=aloha#/sObject/00OP0000000XXXXXXX/view?a:t=149251140448?isdtp=lt" height="800px" width="100%" scrolling="yes" style="position:relative;"/>
</div>
</aura:component>
Thanks in advance.