gpt4 book ai didi

javascript - 单击嵌入 Shiny 的 googlevis 折线图中的图例时如何隐藏系列

转载 作者:塔克拉玛干 更新时间:2023-11-02 21:02:09 24 4
gpt4 key购买 nike

我有一个 Shiny 的应用程序,它使用 googlevis 包嵌入了谷歌折线图。单击它的图例键时,我需要能够隐藏一行。我在谷歌图表中找到了关于如何做到这一点的代码:

$http://jsfiddle.net/xDUPF/4/light/$

如何将此行为引入使用 shiny 创建的图形?我可以为它使用“jscode”参数吗?

最佳答案

您可以通过插入一些额外的 javascript 代码来实现此目的。技术展示here .当您调用 gvisLineChart 并将其分配给 x 时,它会返回一个列表。您可以检查以下内容

x$html$chart[['jsDrawChart']]

它会返回类似的东西

// jsDrawChart
function drawChartyourid() {
var data = gvisDatayourid();
var options = {};
options["allowHtml"] = true;
options["series"] = [{targetAxisIndex: 0},
{targetAxisIndex:1}];
options["vAxes"] = [{title:'val1'}, {title:'val2'}];


var chart = new google.visualization.LineChart(
document.getElementById('yourid')
);
chart.draw(data,options);
}

您可以调整这段 javascript 代码来实现您的目的。作为一个例子,这里是一个 ui.Rserver.R。结果可以查看http://spark.rstudio.com/johnharrison/gvisTest

# ui.R

library(shiny)

shinyUI(pageWithSidebar(
headerPanel("Hello Shiny!"),

sidebarPanel("Sidebar"),
mainPanel("Main",
htmlOutput('gtest'))
)

)


# server.R
library(shiny)
library(googleVis)

shinyServer(function(input, output) {

output$gtest <- renderGvis({
df <- data.frame(country=c("US", "GB", "BR"), val1=c(1,3,4), val2=c(23,12,32))
gt <- gvisLineChart(df, xvar="country", yvar=c("val1", "val2"),
options=list(title="Hello World",
titleTextStyle="{color:'red',fontName:'Courier',fontSize:16}",
curveType='function'),chartid = "yourid"
)
jsInsert <- "var columns = [];
// display these data series by default
var defaultSeries = [1,2,3];
var series = {};
for (var i = 0; i < data.getNumberOfColumns(); i++) {
if (i == 0 || defaultSeries.indexOf(i) > -1) {
// if the column is the domain column or in the default list, display the series
columns.push(i);
} else {
// otherwise, hide it
columns[i] = {
label: data.getColumnLabel(i),
type: data.getColumnType(i),
calc: function () {
return null;
}
};
}
if (i > 0) {
// set the default series option
series[i - 1] = {};
if (defaultSeries.indexOf(i) == -1) {
// backup the default color (if set)
if (typeof (series[i - 1].color) !== 'undefined') {
series[i - 1].backupColor = series[i - 1].color;
}
series[i - 1].color = '#CCCCCC';
}
}
}
options['series'] = series;

function showHideSeries () {
var sel = chart.getSelection();
// if selection length is 0, we deselected an element
if (sel.length > 0) {
// if row is undefined, we clicked on the legend
if (sel[0].row == null) {
var col = sel[0].column;
if (columns[col] == col) {
// hide the data series
columns[col] = {
label: data.getColumnLabel(col),
type: data.getColumnType(col),
calc: function () {
return null;
}
};

// grey out the legend entry
series[col - 1].color = '#CCCCCC';
}
else {
// show the data series
columns[col] = col;
series[col - 1].color = null;
}
var view = new google.visualization.DataView(data);
view.setColumns(columns);
chart.draw(view, options);
}
}
}

google.visualization.events.addListener(chart, 'select', showHideSeries);
chart.draw(data,options);
"
gt$html$chart[['jsDrawChart']] <- gsub("chart.draw\\(data,options\\);", jsInsert, gt$html$chart[['jsDrawChart']])
gt

})

})

关于javascript - 单击嵌入 Shiny 的 googlevis 折线图中的图例时如何隐藏系列,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20730848/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com