vue中使用TradingView --2 创建自定义的功能button

自定义创建button

vue中使用TradingView --2 创建自定义的功能button_第1张图片

这里需要用到TradingVeiw 提供的api

this_vue. chart. onChartReady( function() {
this_vue. chart. createButton()
. attr( 'title', 'test')
. attr( 'class', 'button')
. on( 'click', function ( e) {
this_vue. chart. load( referenceChart2);
})
. append( 'test');
})

attr 定义标签属性

on 定义button的点击事件

append button的内容

你可能感兴趣的:(TradingView,TradingView,开发日记)