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

How to hide the legend with uvCharts in R or Javascript

我在 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
   }
}