Create
cancel
Showing results for 
Search instead for 
Did you mean: 
Sign up Log in
Celebration

Earn badges and make progress

You're on your way to the next level! Join the Kudos program to earn points and save your progress.

Deleted user Avatar
Deleted user

Level 1: Seed

25 / 150 points

Next: Root

Avatar

1 badge earned

Collect

Participate in fun challenges

Challenges come and go, but your rewards stay with you. Do more to earn more!

Challenges
Coins

Gift kudos to your peers

What goes around comes around! Share the love by gifting kudos to your peers.

Recognition
Ribbon

Rise up in the ranks

Keep earning points to reach the top of the leaderboard. It resets every quarter so you always have a chance!

Leaderboard

Come for the products,
stay for the community

The Atlassian Community can help you and your team get more value out of Atlassian products and practices.

Atlassian Community about banner
4,551,819
Community Members
 
Community Events
184
Community Groups

How to embed interactive plots?

Edited

I'm trying to figure out a way to embed an interactive plot (created with plotly/python) on a Confluence page.  

We use the Confluence cloud service, so need to host the plot on the Confluence server. 

What I'm currently trying is this: I save the plot as an html file.  Then I upload the plot.html file to Confluence as an attachment.   Then I create an iframe macro in the Confluence page, and paste the URL of the attachment into the iframe.

But when I publish the page and view it, the browser downloads the html code for the plot, instead of displaying it.   After some investigation, what seems to be happening is that when the Atlassian server responds to an http request for the attachment, it sets the "content-disposition" field to "attachment", which tells the browser to download the file, and not try to render it.

If the html file for the plot is hosted elsewhere (i.e. on servers that don't set content-disposition to 'attachment'), embedding the plot works just fine.  e.g. https://plot.ly/~elizabethts/9.embed

Can anyone suggest a workaround to this?  Is there a way, for example, to tell Confluence NOT to set the content-disposition?   

6 answers

I managed to embed a Plotly chart in a page.

First, export the HTML code of your figure: `fig.write_html(buffer, include_plotlyjs=False)`

Then, in Confluence, add an "HTML" macro and copy the generated code.

Remove all the `<head>...</head>` block and add the `plotly.js` script: `<script src="https://cdn.plot.ly/plotly-latest.min.js"></script>`.

 

So to sum-up, you should have an HTML macro containing:

  • a `script` element to get the `plotly.js` library
  • a `div` element with class `plotly-graph-div` (used by plotly for rendering
  • an inline `script` element representing your chart

Save your page, and "Voilà" !

Hope it can help.

Hi, 

 

this is the beginning of my html. Any tips for why it is not working?

 

<html>
<head><script src="https://cdn.plot.ly/plotly-latest.min.js"></script></head>
<body>
<div>


<div id="7eb3aa7f-a37a-45eb-947a-9fd743f82fcb" class="plotly-graph-div" style="height:100%; width:100%;"></div>
<script type="text/javascript">

window.PLOTLYENV=window.PLOTLYENV || {};

if (document.getElementById("7eb3aa7f-a37a-45eb-947a-9fd743f82fcb")) {
Plotly.newPlot(
'7eb3aa7f-a37a-45eb-94.....

Like Prachi Agrawal likes this

I know the question is a bit old, but has anyone figured out a solution? 

@Carl Shan 

Nope.  No luck with this.  Which is pretty disappointing, since our organization is using HTML plot for almost everything.  (Once you've got used to interactive plots, it is hard to go back to static!)

The only viable solution right now is to host charts on a web server outside of Atlassian.  But as far as I can see, there's no method for Confluence to authenticate, so the plots would need to be public.   For us (and for your team, it sounds like) that's not an option.

What I find incredibly frustrating about this is that from a security perspective at least, it seems far more dangerous for Confluence to allow external HTML to execute than to allow HTML from page attachments.   I really can't understand why Atlassian would allow the former, but disable the latter.

I also tried using the Atlassian REST API to see if I could change the 'content-disposition' flag via that mechanism.  But no luck there: it's not visible through the API.

For us, this is a HUGE problem.   Since all our plots are HTML, Confluence is almost useless without some ability to render them.   We are considering migrating to a different platform that will support this.

-- Dom

Hey @dom_layfield , did you ever get an answer to this question?

I am trying to also embed a Plotly chart into my internal wiki and I've tried the following:

  • Generate an HTML and embed it as an HTML (didn't work)
  • Generate a embed link to the Plot.ly chart using Chart Studio, but this is by default public and I cannot share the chart publicly.

Curious if you figured out a solution.

Hey @Carl Shan how to generate an embed link to the plotly chart if I have generated chart on Jupyter notebook?

for those who are still looking for an answer.
all you need to do:
1. move the html file to your document
2. add ntml macro via Confluence panel
3. in the window that opens, find the cell "Location of HTML data"
4. enter: ^your_file_name.html
5. you are great!

file name must not contain spaces and special characters. only text, numbers and underscores

A solution maybe could be HTML files hosted on an AWS S3 bucket and then implemented into the confluence page via iframe?

Just wondering if you've had a chance to implement your idea?

Yes we implemented as suggested and protect it with authentication. This way we have the possibility to implement html files as Iframes in which we have for example plotly plots exported.

Suggest an answer

Log in or Sign up to answer
TAGS
AUG Leaders

Atlassian Community Events