emacs-orgmode
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[O] Bug: org html export INFOJS does not include an interactive plot in


From: Feiming Chen
Subject: [O] Bug: org html export INFOJS does not include an interactive plot in info view
Date: Fri, 24 Aug 2012 09:59:58 -0700 (PDT)

HI:

This bug is related to Sebastian Rose's org-info.js code.   I like using the INFOJS option as it makes a html report more organized.  :-)

Attached are two test files:
     "test1.org" is exported to "test1.html" with INFOJS, where the first plot (an interactive chart) cannot be seen in the "info" view mode, but can be seen in the "fold" view mode. 
    "test2.org" is exported to "test2.html" without INFOJS.   All the plots look OK. 

The interactive plot is exported as HTML code, which may confuse the "org-info.js"  code.   Could you fix this problem?  
 
I am using org mode version 7.8.11 and emacs 24.1.1.  The exact org version I use is "org-mode-00e5c278fd68d20a171071fd3098fd85d7f4614d.tgz" from git.

Thanks for your help!

Emacs  : GNU Emacs 24.1.1 (i686-pc-linux-gnu, GTK+ Version 2.22.0)
 of 2012-08-13 on fmc.work
Package: Org-mode version N/A (N/A @ /usr/share/emacs/site-lisp/org/)


Sincerely,
Feiming Chen

Attachment: plot.png
Description: PNG image

test2

Table of Contents

1 test 2: using pie chart without INFOJS

  • an interactive plot
library(googleVis)
d <- data.frame(name=letters[1:5], value=1:5)
x <- gvisPieChart(d)
print(x, 'chart')
  • a regular plot
pie(d$value, labels=d$name)

plot.png

Attachment: test2.org
Description: Binary data

test1

Table of Contents

1 test 1: using pie chart with INFOJS

  • an interactive plot
library(googleVis)
d <- data.frame(name=letters[1:5], value=1:5)
x <- gvisPieChart(d)
print(x, 'chart')
  • a regular plot
pie(d$value, labels=d$name)

plot.png

Attachment: test1.org
Description: Binary data


reply via email to

[Prev in Thread] Current Thread [Next in Thread]