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
Praveen BonaluPraveen Bonalu 

reports in community portal

Hi,

I need to display the graphical  reports  in the community portal,where i need to pass the dynamic filters to pull the information and show it on portal .when the user see the report he should be able to view only his Account  information reports to which he belongs to .

I have tried :
 
apex:page standardController="Account">
<apex:image title="Reports" url="{!$Resource.Report_Image}" width="50" height="50" / ><br/><br/><br/>
    <analytics:reportChart cacheResults="false" reportId="00OM0000000h0E0"
        filter="[{column:'ACCOUNT_ID',operator:'equals',value:'{!Id}'}]"
        size="tiny">
    </analytics:reportChart>
</apex:page>

But shows no results.Can any one please let me know how to write a visual force page to expose the reports (In visual ).

Thanks
Praveen 
James LoghryJames Loghry
What error are you seeing?  The tag looks correct and works in my developer org.  Make sure your report is a summary or matrix report, and you've summarized a field and added a chart to the report.
Praveen BonaluPraveen Bonalu
Hi James,

I have got this feature done 

Thanks
Praveen