You need to sign in to do that
Don't have an account?
View full dashboard on home page
Hello -
I need to set up my team to view a full dashboard on their home page, but we are only allowed a snapshot. Is there coding I can input on a custom component that would make this possible?
Thanks, Kay
[1] http://salesforce.stackexchange.com/questions/8806/how-can-i-embed-a-dashboard-in-visualforce
[2] https://developer.salesforce.com/blogs/tech-pubs/2011/09/introducing-visualforce-charting.html
[3] https://help.salesforce.com/HTViewHelpDoc?id=home_page_components_custom_create.htm&language=en_US (https://help.salesforce.com/HTViewHelpDoc?id=home_page_components_custom_create.htm&language=en_US)
All Answers
[1] http://salesforce.stackexchange.com/questions/8806/how-can-i-embed-a-dashboard-in-visualforce
[2] https://developer.salesforce.com/blogs/tech-pubs/2011/09/introducing-visualforce-charting.html
[3] https://help.salesforce.com/HTViewHelpDoc?id=home_page_components_custom_create.htm&language=en_US (https://help.salesforce.com/HTViewHelpDoc?id=home_page_components_custom_create.htm&language=en_US)
Thank you so much for your help! I just built my first VisualForce page and it is working. One last thing and it will be perfect. All of the reports charts are now showing up on my dashboard (yea!), but they are stacked 6 high instead of either 6 on 1 row or split between 2 rows.
<apex:page >
<analytics:reportChart reportID="00OF000000703NY"></analytics:reportChart>
<analytics:reportChart reportID="00OF0000007030P"></analytics:reportChart>
<analytics:reportChart reportID="00OF0000006ICHw"></analytics:reportChart>
<analytics:reportChart reportID="00OF000000703Ol"></analytics:reportChart>
<analytics:reportChart reportID="00OF000000705T4"></analytics:reportChart>
<analytics:reportChart reportID="00OF0000006I627"></analytics:reportChart>
</apex:page>
Any thoughts on what code I should add/use to view side-by-side and where should it be placed?
I'm sorry to bother you again, but I have the dashboard looking the way I want (thank you!!), but one of the report charts is a gauge that had to be set up from the dashboard and not in the report, so this one will not show with the <analytics:reportchart> code. I've tried apex:gaugeSeries, but I just get an error message. Any suggestions?
[1] https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_controller_custom.htm
[2] https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_chart.htm
[3] https://developer.salesforce.com/docs/atlas.en-us.pages.meta/pages/pages_compref_gaugeSeries.htm
[4] https://developer.salesforce.com/docs/atlas.en-us.apexcode.meta/apexcode/apex_class_reports_reportresults.htm
I've been trying to get past #1 most of the day and I've discovered I'm not even sure how to start. I thought I could figure it out, but it is obviously way over my head. I hate to take up more of your time, so I won't bother you anymore, but I really appreciate all the time and assistance you've given me! I've learned quite a bit from you.
Thanks again!
Kay
http://blog.deadlypenguin.com/blog/2016/01/25/apexgaugeseries-and-display-report-data/
I've also replied to your other post with this as well. Since you didn't really seem to get a good response from it.