我已经实现了图表视图与交易视图库- Charting & Trading Platform
我想用小数缩放y轴的价格。我已经尝试过priceFormatter(),并返回带有format函数的对象来格式化价格。但是,我找不到像setPriceFormatter()这样的函数
widget.chart().priceFormatter();这是返回对象
{
type: "price"
_fractional: false
_fractionalLength: 0
_minMove: 1
_minMove2: undefined
_priceScale: 1
}默认情况下,通过用户点击,它可以缩放价格值
发布于 2020-05-06 16:40:38
找到了
widget.onChartReady(function () {
widget.mainSeriesPriceFormatter()._priceScale = 10000;
});https://stackoverflow.com/questions/61627723
复制相似问题