图表数据变焦无法读取属性'长度'未定义的

时间:2017-04-18 02:21:13

标签: javascript jsp echarts

我想将数据缩放显示为日期值而不是类别数据值,以便我添加两个轴。

请查看@我的以下java脚本代码:

option = {
    dataZoom: {
        show: true,
        realtime : true,
        xAxisIndex: [1],
    },
    xAxis : [{
        type: 'category',
        data: ['A','B','C']
    },{
        type: 'value',
        xAxisIndex: 1,
        yAxisIndex: 1,
        formatter: function(value) {
            var dateObj= new Date(value);
            return dateObj.format("yyyy-mm-dd HH:MM:ss");                                                     
        }
    }
}

1 个答案:

答案 0 :(得分:1)

此处为系列:[数据]丢失。

在选项中添加系列,如下所示。

series: [
  {
    name: 'Active Minutes',
    type: 'pie',
    radius: '55%',
    center: ['45%', '65%'],
    data: [
      { value: jsondata.avgSedentaryTime, name: 'Sedentary' },
      { value: jsondata.avgFairlyActiveTime, name: 'Fairly Active' },
      { value: jsondata.avgLightlyActive, name: 'Lightly Active' },
      { value: jsondata.avgVeryActive, name: 'Very Active' }
    ],
    itemStyle: {
      emphasis: {
        shadowBlur: 10,
        shadowOffsetX: 0,
        shadowColor: 'rgba(0, 0, 0, 0.5)'
      }
    }
  }
]