2015-12-13 68 views
0

我想嵌入到NPLOT閃亮的server.R像如何將rcharts(nplot)嵌入到帶有html文件的閃亮文件中?

shinyServer(function(input, output) { 

    output$testChart <- renderChart2({ 
n1<-nPlot(Freq ~ Var1, data=speedTable, type="discreteBarChart", color="blue") 
n1$xAxis(axisLabel = "Heading") 
n1$yAxis(axisLabel = "label", width = 40) 
n1$set(title = "Title") 
n1$addParams(dom = 'testChart') 
return(n1) 

}) 
}) 

和我的index.html像這樣:

<html> 

<head> 
    <script src="shared/jquery.js" type="text/javascript"></script> 
    <script src="shared/shiny.js" type="text/javascript"></script> 
    <link rel="stylesheet" type="text/css" href="shared/shiny.css"/> 
</head> 

<body> 
    <br /> 
    <br /> 
    <hr /> 
<div class="rChart nvd3" id="testChart"></div> 
</body> 

</html> 

但在頁面dosenot說明了什麼? 您的幫助將非常感激

+0

有你看到這個http://stackoverflow.com/questions/24102372/r-shiny-app-with-rcharts – MLavoie

回答

0

嗨,你必須下載D3NVD3,包括那些到HTML:

<script src="d3.min.js"></script> 
<link href="nv.d3.min.css" rel="stylesheet"> 
<script src="nv.d3.min.js"></script> 

而對於圖形做這樣的事情:

<div id="testChart" class="shiny-html-output rChart nvd3"></div> 
<style>.nvd3-svg { margin: 0px; padding: 0px; height: 100%; width: 100%; }</style> 
+0

謝謝,除非我已經soluntions已經 –

相關問題