gpt4 book ai didi

javascript - 如何在 R 或 Javascript 中使用 uvCharts 隐藏图例

转载 作者:行者123 更新时间:2023-12-03 09:15:20 27 4
gpt4 key购买 nike

我正在 R 中通过 RCharts 使用 uvCharts。我想要做的就是能够在需要时隐藏条形图上的图例。以下是来自 http://rcharts.io/howitworks/part2/ 的代码和示例(我认为我还不能插入图像)。如果滚动到页面中间,您会看到带有棕色、蓝色、淡褐色和绿色图例的条形图。

hair_eye_male <- subset(as.data.frame(HairEyeColor), Sex == "Male")
dataset = make_dataset('Hair', 'Freq', hair_eye_male, group = 'Eye')
u1 <- uPlot("Hair", "Freq",
data = hair_eye_male,
group = "Eye",
type = 'StackedBar'
)
u1$config(meta = list(
caption = "Hair vs. Eye Colors",
vlabel = "Hair Color"
))
u1$config(graph = list(
palette = "Olive"
))
u1

有人知道如何隐藏 uvCharts 中的图例吗?我知道我可以做

u1$config(legend = list()) 

但是文档( http://imaginea.github.io/uvCharts/documentation.html )并没有真正提供有关图例的任何进一步信息。任何有关如何在 R 或 JavaScript 中执行此操作的信息将不胜感激。预先感谢您的帮助。

最佳答案

你可以试试

u1$config(legend = list(
showlegends = false
))

在 uvCharts 中,必须将其作为配置属性传递

{
legend: {
showlegends: false
}
}

关于javascript - 如何在 R 或 Javascript 中使用 uvCharts 隐藏图例,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31973303/

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