vue中使用TradingView --8 自定义初始化显示范围(间接控制了初始化蜡烛图的宽度)
满足一下需求:1.设置初始化蜡烛图的宽度2.设置初始化显示的范围只可意会不可言传let fromTime = _this.bars[_this.bars.length - 50].time / 1000;let toTime = _this.bars[_this.bars.length - 1].time / 1000;_this.chart.chart().setVisibleRange({fr
·
满足一下需求:
1.设置初始化蜡烛图的宽度
2.设置初始化显示的范围
只可意会不可言传
let
fromTime =
_this.
bars[
_this.
bars.
length -
50].
time /
1000;
let
toTime =
_this.
bars[
_this.
bars.
length -
1].
time /
1000;
_this.
chart.
chart().
setVisibleRange({
from:
fromTime,
to:
toTime});
更多推荐
已为社区贡献28条内容
所有评论(0)