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
ch ranjithch ranjith 

How to referesh dashboard when ever page reloads?

<apex:page showheader="false" sidebar="false">
<apex:iframe src="https://ap1.salesforce.com/01Z90000000MLn7" scrolling="true" height="1588px" width="100%" />
</apex:page>
izay.ramos-irizarry1.3893936724146558E12izay.ramos-irizarry1.3893936724146558E12
Try using the <analytics:reportChart/> tag with the showRefreshButton attribute set to true

Sample:
<analytics:reportChart reportId="00OF000000XXXXX" filter="[{column:'Account.AccountNumber', operator:'equals', value:'{!Contract_Summary__c.Account__r.AccountNumber}'}]" size="small" showRefreshButton="true"></analytics:reportChart>

ch ranjithch ranjith
<apex:page showheader="false" sidebar="false">
<apex:iframe src="https://ap1.salesforce.com/01Z90000000MLn7" scrolling="true" height="1588px" width="100%" />
<analytics:reportChart reportId="00O90000006uIzw" filter="[{column:'student__C.salary__c', operator:'equals',
value:'100000-200000'}]" size="small" showRefreshButton="false"></analytics:reportChart>
</apex:page>

I tried this but enable to refresh the page when it is called?
ch ranjithch ranjith
<apex:page showheader="false" sidebar="false">
<apex:iframe src="https://ap1.salesforce.com/01Z90000000MLn7" scrolling="true" height="1588px" width="100%" />
<analytics:reportChart reportId="00O90000006uIzw" filter="[{column:'student__C.salary__c', operator:'equals',
value:'100000-200000'}]" size="small" showRefreshButton="false"></analytics:reportChart>
</apex:page>

I tried this but enable to refresh the page when it is called....