如何固定 LegendBox 在图表中的位置?
Posted
技术标签:
【中文标题】如何固定 LegendBox 在图表中的位置?【英文标题】:How to fix the position of LegendBox in the chart? 【发布时间】:2020-02-25 17:37:09 【问题描述】:我正在使用 LightningChartJS 创建图表。目前图例框的位置可以通过拖动来改变。如何修复图例框的位置?
const legend = chart.addLegendBox()
.setOrigin(UIOrigins.RightTop)
.setPosition( x: 90, y: 90 )
.setMargin( left: 10, right: 10, top: 10, bottom: 10 )
legend.add(chart)
【问题讨论】:
【参考方案1】:拖动可以禁用
legend.setDraggingMode( UIDraggingModes.notDraggable )
【讨论】:
以上是关于如何固定 LegendBox 在图表中的位置?的主要内容,如果未能解决你的问题,请参考以下文章