HightChart实现二维数组


直接上代码


        //载入曲线
        $('#newcontent').highcharts({
          chart: {
            type: 'line'
          },
          title: {
            text: null
          },
          xAxis: {
            categories: newsub,
          },
          yAxis: {
            min: 0,
            title: {
              text: null
            },
            labels: {
              formatter: function() {
                return this.value / 10000 + '万';
              }
            }
          },
          tooltip: {
                crosshairs: [true, true],  
           },         
          credits: {
            enabled: false
          },
          series: [{
            name: '30日走势图',
            data: okboom
          }]
        });

你可能感兴趣的:(JS开发)