gpt4 book ai didi

javascript - 如何修改 OHLC 图表中条形图的默认颜色?

转载 作者:行者123 更新时间:2023-11-28 03:27:05 25 4
gpt4 key购买 nike

我正在使用 LightningChartJS 创建 OHLC 图表。默认情况下,条形图的颜色为红色和绿色。如何更改这些条形图的颜色?如何添加填充样式

.setPositiveStyle( (figure) => figure
.setStrokeStyle( (stroke) => stroke.setThickness(2) )
)
.setNegativeStyle( (figure) => figure
.setStrokeStyle( (stroke) => stroke.setThickness(2) )
)

最佳答案

您可以使用 setBodyFillStyle 方法更改 OHLC 图窗的主体。

const series = chart.addOHLCSeries()
// Style a positive OHLC figure
series.setPositiveStyle( (figure) => figure
// Style the body of a Positive Figure
.setBodyFillStyle( new SolidFill({ color: ColorHEX('#E69965')})
)
// Style a negative OHLC figure
series.setNegativeStyle( (figure) => figure
// Style the body of a Negative Figure
.setBodyFillStyle( new SolidFill({color: ColorHEX('#E659A5')})
)

关于javascript - 如何修改 OHLC 图表中条形图的默认颜色?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58540400/

25 4 0
文章推荐: javascript - 具有过滤功能的 HTML 和 javascript