我注意到Lightningchart JS中X轴的Custom DateTime中的答案,但它报告了错误"AxisTickStrategies.DateTime不是一个函数";在lightningchart V2.2.1中。此外,由于AxisTickStrategies.DateTime不是一个函数,我如何使用DateTime轴显示系列的完整日期axisx标签?
请查看官方LCJS交互示例,并搜索"日期时间";
例如,https://www.arction.com/lightningchart-js-interactive-examples/examples/lcjs-example-0020-dateTimeAxis.html
这是所需的最低限度的代码-请参阅示例进行扩展修改。
chart.getDefaultAxisX()
.setTickStrategy(
// Use DateTime TickStrategy for this Axis
AxisTickStrategies.DateTime,
)