当数据长度超过 300 时,时间线图表构建失败

Timeline chart build failed when data length more then 300

当我们使用超过 300 的数据长度使用 Highchart 库创建时间线图表时,重现 [Example] 上的问题检查时出错 ''

此问题是由 cropThreshold 引起的,默认设置为 300。作为解决方案,请增加该值。

但是,它看起来像是 Highcharts 中的错误,因此您可以在此处报告:https://github.com/highcharts/highcharts/issues

    plotOptions: {
        series: {
            cropThreshold: 400
        }
    }

现场演示: https://jsfiddle.net/BlackLabel/3bokt407/

API参考:https://api.highcharts.com/highcharts/series.line.cropThreshold