作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我正在 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/
我是一名优秀的程序员,十分优秀!