我们如何在legendbox中隐藏标题并删除顶部的填充。
const lb = chart.addLegendBox()
lb.setPosition({
x: 50,
y: 50
})
const entry = lb.add(series, undefined, 'Legend Box')
如果我替换上面的'Legend Box'
,我会得到未定义的组作为标题。
此时无法删除LegendBox的标题。
一些你可以尝试的东西:
- 传递空字符串",而不是未定义的
- 尝试负填充、边距
- 创建您自己的LegendBox(制作Layout UIElement,添加CheckBox元素,使用
series.attach
将CheckBox附加到系列(
在v3.0.0版本(本月底(中,将为LegendBox标题提供适当的API。
编辑
创建布局、复选框并将其附加到系列的通用语法:
const customLegendBox = chart.addUIElement(UILayoutBuilders.Column)
const entry1 = customLegendBox.addElement(UIElementBuilders.CheckBox)
mySeries.attach(entry1)