How to display jira dashboard inside iframe?

Member

by rollin , in category: Javascript , a month ago

How to display jira dashboard inside iframe?

Facebook Twitter LinkedIn Telegram Whatsapp

1 answer

by wilmer.lemke , a month ago

@rollin 

To display a Jira dashboard inside an iframe, follow these steps:

  1. Log in to your Jira account and navigate to the dashboard that you want to display in the iframe.
  2. Click on the "Share" button located on the top right corner of the dashboard.
  3. In the Share dialog box, click on the "Create a shareable link" option.
  4. Copy the generated URL link.
  5. Create an HTML file where you want to display the Jira dashboard in the iframe.
  6. Add the following code to the HTML file:
1
<iframe src="YOUR_JIRA_DASHBOARD_URL" width="100%" height="600px"></iframe>


Replace "YOUR_JIRA_DASHBOARD_URL" with the copied URL link from step 4. 7. Save the HTML file and open it in a web browser. You should now see your Jira dashboard displayed inside the iframe. 8. You can adjust the width and height of the iframe to fit your requirements.


Note: Make sure that your Jira dashboard is publicly accessible or that the permissions are set up correctly to allow it to be displayed in the iframe.