Include AmChart in Shiny app embedded in HTMLHow do I check if an array includes an object in JavaScript?Where should I put <script> tags in HTML markup?Retrieve the position (X,Y) of an HTML elementHow do I include a JavaScript file in another JavaScript file?Include jQuery in the JavaScript ConsoleIs the recommendation to include CSS before JavaScript invalid?offsetting an html anchor to adjust for fixed headerHow can I insert html code inside a javascript value?Embed CSS in Shiny App
What can I do to increase the amount of LEDs I can power with a pro micro?
Does an Irish VISA WARNING count as "refused entry at the border of any country other than the UK?"
Are there any cons in using rounded corners for bar graphs?
What is a "soap"?
Why do my bicycle brakes get worse and feel more 'squishy" over time?
Is this bar slide trick shown on Cheers real or a visual effect?
Nirvana is the ground layer underneath them all
If a person claims to know anything could it be disproven by saying 'prove that we are not in a simulation'?
Why did IBM make the PC BIOS source code public?
Doesn't the speed of light limit imply the same electron can be annihilated twice?
How do I ask for 2-3 days per week remote work in a job interview?
Heyawake: An Introductory Puzzle
Can anybody tell me who this Pokemon is?
Good textbook for queueing theory and performance modeling
The oceans and the moon
Attacking the Hydra
Does the C++ standard guarantee that a failed insertion into an associative container will not modify the rvalue-reference argument?
What would it take to get a message to another star?
How to prevent criminal gangs from making/buying guns?
Are there liquid fueled rocket boosters having coaxial fuel/oxidizer tanks?
What's the relationship betweeen MS-DOS and XENIX?
Who is the controller of a Pacifism enchanting my creature?
Is Thieves' Cant a language?
What unique challenges/limitations will I face if I start a career as a pilot at 45 years old?
Include AmChart in Shiny app embedded in HTML
How do I check if an array includes an object in JavaScript?Where should I put <script> tags in HTML markup?Retrieve the position (X,Y) of an HTML elementHow do I include a JavaScript file in another JavaScript file?Include jQuery in the JavaScript ConsoleIs the recommendation to include CSS before JavaScript invalid?offsetting an html anchor to adjust for fixed headerHow can I insert html code inside a javascript value?Embed CSS in Shiny App
.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;
I am trying to create a pop-up in my Shiny app
, which should hold a simple plot created using AmChart
. Below is my bare shell Shiny app without any plot:
runApp(list(
ui = bootstrapPage(
tags$style(type = 'text/css',
".wrap
position: absolute;
overflow: hidden;
top: 10%;
right: 10%;
bottom: 85px;
left: 10%;
padding: 10px 50px;
display: block;
border-radius: 4px;
transform: translateY(20px);
transition: all 0.5s;
visibility: hidden;
"),
tags$style(type = 'text/css',
"
.wrap .content
opacity: 0;
"),
tags$style(type = 'text/css',
"
.wrap:before
position: absolute;
width: 1px;
height: 1px;
background: white;
content: '';
bottom: 10px;
left: 50%;
top: 95%;
color: #fff;
border-radius: 50%;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active
display: block;
visibility: visible;
box-shadow: 2px 3px 16px silver;
transition: all 600ms;
transform: translateY(0px);
transition: all 0.5s;
"),
tags$style(type = 'text/css',
"
.wrap.active:before
height: 2000px;
width: 2000px;
border-radius: 50%;
top: 50%;
left: 50%;
margin-left: -1000px;
margin-top: -1000px;
display: block;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active .content
position: relative;
opacity: 1;
font-size: 30px;
transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
"),
div(id = "xxx", style = 'background: rgba(0,0,0,.2); height: 20px; width: 100%', htmlOutput("xxx_Output"))
),
server = function(input, output)
output$xxx_Output = renderText(
paste("<script>
$('#xxx').on('click', function()
$('.wrap').toggleClass('active');
return false;
);
</script>
<div class = 'wrap'>
<div class = 'contentF' id = 'content_ID'>
</div>
</div>"
,
sep = "")
)
))
This works perfectly fine, however, if I include amChart (as in my Codepen: https://codepen.io/Volabos/pen/MxdRRd?&editable=true) within the paste()
function, that chart is not visible at all.
I am aware of amChart
API for R/Shiny i.e. rAmChart package, however which may require bsModal()
function from shinyBS
, but I want to avoid taking this route.
I would like to know why my approach is not working where I wanted to embed AmChart JS
code within HTML body and render it in the App body. What can be done to achieve this in above way?
Much appreciate for any pointer.
Thanks,
javascript r shiny amcharts
add a comment |
I am trying to create a pop-up in my Shiny app
, which should hold a simple plot created using AmChart
. Below is my bare shell Shiny app without any plot:
runApp(list(
ui = bootstrapPage(
tags$style(type = 'text/css',
".wrap
position: absolute;
overflow: hidden;
top: 10%;
right: 10%;
bottom: 85px;
left: 10%;
padding: 10px 50px;
display: block;
border-radius: 4px;
transform: translateY(20px);
transition: all 0.5s;
visibility: hidden;
"),
tags$style(type = 'text/css',
"
.wrap .content
opacity: 0;
"),
tags$style(type = 'text/css',
"
.wrap:before
position: absolute;
width: 1px;
height: 1px;
background: white;
content: '';
bottom: 10px;
left: 50%;
top: 95%;
color: #fff;
border-radius: 50%;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active
display: block;
visibility: visible;
box-shadow: 2px 3px 16px silver;
transition: all 600ms;
transform: translateY(0px);
transition: all 0.5s;
"),
tags$style(type = 'text/css',
"
.wrap.active:before
height: 2000px;
width: 2000px;
border-radius: 50%;
top: 50%;
left: 50%;
margin-left: -1000px;
margin-top: -1000px;
display: block;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active .content
position: relative;
opacity: 1;
font-size: 30px;
transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
"),
div(id = "xxx", style = 'background: rgba(0,0,0,.2); height: 20px; width: 100%', htmlOutput("xxx_Output"))
),
server = function(input, output)
output$xxx_Output = renderText(
paste("<script>
$('#xxx').on('click', function()
$('.wrap').toggleClass('active');
return false;
);
</script>
<div class = 'wrap'>
<div class = 'contentF' id = 'content_ID'>
</div>
</div>"
,
sep = "")
)
))
This works perfectly fine, however, if I include amChart (as in my Codepen: https://codepen.io/Volabos/pen/MxdRRd?&editable=true) within the paste()
function, that chart is not visible at all.
I am aware of amChart
API for R/Shiny i.e. rAmChart package, however which may require bsModal()
function from shinyBS
, but I want to avoid taking this route.
I would like to know why my approach is not working where I wanted to embed AmChart JS
code within HTML body and render it in the App body. What can be done to achieve this in above way?
Much appreciate for any pointer.
Thanks,
javascript r shiny amcharts
add a comment |
I am trying to create a pop-up in my Shiny app
, which should hold a simple plot created using AmChart
. Below is my bare shell Shiny app without any plot:
runApp(list(
ui = bootstrapPage(
tags$style(type = 'text/css',
".wrap
position: absolute;
overflow: hidden;
top: 10%;
right: 10%;
bottom: 85px;
left: 10%;
padding: 10px 50px;
display: block;
border-radius: 4px;
transform: translateY(20px);
transition: all 0.5s;
visibility: hidden;
"),
tags$style(type = 'text/css',
"
.wrap .content
opacity: 0;
"),
tags$style(type = 'text/css',
"
.wrap:before
position: absolute;
width: 1px;
height: 1px;
background: white;
content: '';
bottom: 10px;
left: 50%;
top: 95%;
color: #fff;
border-radius: 50%;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active
display: block;
visibility: visible;
box-shadow: 2px 3px 16px silver;
transition: all 600ms;
transform: translateY(0px);
transition: all 0.5s;
"),
tags$style(type = 'text/css',
"
.wrap.active:before
height: 2000px;
width: 2000px;
border-radius: 50%;
top: 50%;
left: 50%;
margin-left: -1000px;
margin-top: -1000px;
display: block;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active .content
position: relative;
opacity: 1;
font-size: 30px;
transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
"),
div(id = "xxx", style = 'background: rgba(0,0,0,.2); height: 20px; width: 100%', htmlOutput("xxx_Output"))
),
server = function(input, output)
output$xxx_Output = renderText(
paste("<script>
$('#xxx').on('click', function()
$('.wrap').toggleClass('active');
return false;
);
</script>
<div class = 'wrap'>
<div class = 'contentF' id = 'content_ID'>
</div>
</div>"
,
sep = "")
)
))
This works perfectly fine, however, if I include amChart (as in my Codepen: https://codepen.io/Volabos/pen/MxdRRd?&editable=true) within the paste()
function, that chart is not visible at all.
I am aware of amChart
API for R/Shiny i.e. rAmChart package, however which may require bsModal()
function from shinyBS
, but I want to avoid taking this route.
I would like to know why my approach is not working where I wanted to embed AmChart JS
code within HTML body and render it in the App body. What can be done to achieve this in above way?
Much appreciate for any pointer.
Thanks,
javascript r shiny amcharts
I am trying to create a pop-up in my Shiny app
, which should hold a simple plot created using AmChart
. Below is my bare shell Shiny app without any plot:
runApp(list(
ui = bootstrapPage(
tags$style(type = 'text/css',
".wrap
position: absolute;
overflow: hidden;
top: 10%;
right: 10%;
bottom: 85px;
left: 10%;
padding: 10px 50px;
display: block;
border-radius: 4px;
transform: translateY(20px);
transition: all 0.5s;
visibility: hidden;
"),
tags$style(type = 'text/css',
"
.wrap .content
opacity: 0;
"),
tags$style(type = 'text/css',
"
.wrap:before
position: absolute;
width: 1px;
height: 1px;
background: white;
content: '';
bottom: 10px;
left: 50%;
top: 95%;
color: #fff;
border-radius: 50%;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active
display: block;
visibility: visible;
box-shadow: 2px 3px 16px silver;
transition: all 600ms;
transform: translateY(0px);
transition: all 0.5s;
"),
tags$style(type = 'text/css',
"
.wrap.active:before
height: 2000px;
width: 2000px;
border-radius: 50%;
top: 50%;
left: 50%;
margin-left: -1000px;
margin-top: -1000px;
display: block;
-webkit-transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
transition: all 600ms cubic-bezier(0.215, 0.61, 0.355, 1);
"),
tags$style(type = 'text/css',
"
.wrap.active .content
position: relative;
opacity: 1;
font-size: 30px;
transition: all 600ms cubic-bezier(0.55, 0.055, 0.675, 0.19);
"),
div(id = "xxx", style = 'background: rgba(0,0,0,.2); height: 20px; width: 100%', htmlOutput("xxx_Output"))
),
server = function(input, output)
output$xxx_Output = renderText(
paste("<script>
$('#xxx').on('click', function()
$('.wrap').toggleClass('active');
return false;
);
</script>
<div class = 'wrap'>
<div class = 'contentF' id = 'content_ID'>
</div>
</div>"
,
sep = "")
)
))
This works perfectly fine, however, if I include amChart (as in my Codepen: https://codepen.io/Volabos/pen/MxdRRd?&editable=true) within the paste()
function, that chart is not visible at all.
I am aware of amChart
API for R/Shiny i.e. rAmChart package, however which may require bsModal()
function from shinyBS
, but I want to avoid taking this route.
I would like to know why my approach is not working where I wanted to embed AmChart JS
code within HTML body and render it in the App body. What can be done to achieve this in above way?
Much appreciate for any pointer.
Thanks,
javascript r shiny amcharts
javascript r shiny amcharts
edited Mar 27 at 12:16
Bogaso
asked Mar 27 at 11:29
BogasoBogaso
5335 silver badges15 bronze badges
5335 silver badges15 bronze badges
add a comment |
add a comment |
0
active
oldest
votes
Your Answer
StackExchange.ifUsing("editor", function ()
StackExchange.using("externalEditor", function ()
StackExchange.using("snippets", function ()
StackExchange.snippets.init();
);
);
, "code-snippets");
StackExchange.ready(function()
var channelOptions =
tags: "".split(" "),
id: "1"
;
initTagRenderer("".split(" "), "".split(" "), channelOptions);
StackExchange.using("externalEditor", function()
// Have to fire editor after snippets, if snippets enabled
if (StackExchange.settings.snippets.snippetsEnabled)
StackExchange.using("snippets", function()
createEditor();
);
else
createEditor();
);
function createEditor()
StackExchange.prepareEditor(
heartbeatType: 'answer',
autoActivateHeartbeat: false,
convertImagesToLinks: true,
noModals: true,
showLowRepImageUploadWarning: true,
reputationToPostImages: 10,
bindNavPrevention: true,
postfix: "",
imageUploader:
brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/3.0/"u003ecc by-sa 3.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
allowUrls: true
,
onDemand: true,
discardSelector: ".discard-answer"
,immediatelyShowMarkdownHelp:true
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55376132%2finclude-amchart-in-shiny-app-embedded-in-html%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
0
active
oldest
votes
0
active
oldest
votes
active
oldest
votes
active
oldest
votes
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.
Thanks for contributing an answer to Stack Overflow!
- Please be sure to answer the question. Provide details and share your research!
But avoid …
- Asking for help, clarification, or responding to other answers.
- Making statements based on opinion; back them up with references or personal experience.
To learn more, see our tips on writing great answers.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
StackExchange.ready(
function ()
StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55376132%2finclude-amchart-in-shiny-app-embedded-in-html%23new-answer', 'question_page');
);
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown
Required, but never shown