jones2000 / HQChart

HQChart - H5, 微信小程序 沪深/港股/数字货币/期货/美股 K线图(kline),走势图,缩放,拖拽,十字光标,画图工具,截图,筹码图. 分析家语法,通达信语法,(麦语法),第3方数据替换接口
https://jones2000.github.io/HQChart/webhqchart.demo/samples/kline_index_edit.html
Apache License 2.0
2.89k stars 745 forks source link

订单流图表,HBar 的宽度无法正确显示 #209

Closed playniuniu closed 2 months ago

playniuniu commented 2 months ago

返回的数据宽度为 13

[
    {
        "Price": 7163,
        "Ask": {
            "Value": 110
        },
        "Bid": {
            "Value": 139
        },
        "HBar": {
            "Color": "rgb(176, 212, 184)",
            "Width": 13,
            "Height": -3,
            "Type": 2
        }
    }
]

实际显示的宽度只有 1 个

截屏2024-08-12 22 21 39

完整数据如下

demo.json

jones2000 commented 2 months ago

Type应该使用0,其他1和2是带延长线停止额外条件的。

"HBar": { "Color": "rgb(176, 212, 184)", "Width": 13, "Height": -3, "Type":0 , }

playniuniu commented 2 months ago

非常感谢,确实是这样的。

请问一下哪里可以看到不同 Type 对应情况的文档?