We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Official documents says, "Callback is supported since 4.8.0 ." BUT I test it doesn't work!
Code like below:
series: [{ name: this.id, type: 'candlestick', data: this.klines, itemStyle: { color: Color.Red, color0: Color.Green, borderColor: Color.Red, borderColor0: Color.Green }, markPoint: { symbol: function (value, params) { var trade_type = params.data.trade_type; if (trade_type === TradeType.OPEN_LONG || trade_type === TradeType.OPEN_SHORT) { return "arrow" } if (trade_type === TradeType.CLOSE_LONG || trade_type === TradeType.CLOSE_SHORT) { return "diamond" } }, symbolRotate: -90, // 负数为顺时针旋转! // https://www.jianshu.com/p/9030e06f3fce #拐点利用箭头显示当时风向 // symbolRotate: 官方说从4.8.0版本支持回调函数,但测试结果没用啊! // symbolRotate: function (value, params) { // // var trade_type = params.data.trade_type; // // if (trade_type === TradeType.CLOSE_LONG // // || trade_type === TradeType.OPEN_SHORT) { // // return 180 // 图标翻转180° // // } // return 180 // }, symbolSize: 15, label: { // 可以设置很多参数,默认就好! formatter: function (params) { // return ""; return params.data.desc; } }, itemStyle: { color: Color.Yellow }, data: this.tradePoints }, }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
The Official documents says, "Callback is supported since 4.8.0 ." BUT I test it doesn't work!
Code like below:
The text was updated successfully, but these errors were encountered: