highcharts偶尔缺少标记

时间:2016-06-07 11:28:05

标签: jquery highcharts

图表中的标记有时会正常工作,但有时会随机消失。选项是

plotOptions: {
        areaspline: {
          fillOpacity: 1
        },
        series: {
          tooltip: {
           dateTimeLabelFormats: {
            second:"%A, %b %e, %H:%M:%S"
          }
        },
        marker: {
          fillColor: '#3D84B1',
          lineWidth: 2,
          lineColor: 'white',
          radius: 6

        }
      }
    },

以下是点数

的外观

enter image description here

以下是缺失点的看法

enter image description here

关于发生什么或如何解决的任何想法

1 个答案:

答案 0 :(得分:1)

原来我在解析图表的日期时间时忽略了时间戳的秒数,修复了它。