PineScript:是否可以在表格内滚动?
有时表的内容大于表本身。
是否可以滚动表的内容?
还是使用其他任何元素而不是表来实现这一目标?
Sometimes the content of the table is larger than the table itself.
Is it possible to scroll the content of the table?
Or to use any other element instead of a table to achieve this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

不支持滚动。
您可以尝试使用较小的文字大小。例如,将
table.cell()
的text_size
参数更改为size.small
。Scrolling is not supported.
You can try using a smaller text size. Change
text_size
argument oftable.cell()
tosize.small
for example.