2

しきい値関数は 1 次元配列では正常に機能しますが、入力として取得している 2 次元配列に実装しようとすると機能しません。

私の配列:d4=[{04,300},{10,800},{15,1200}]

シリーズの私のオプション:

var options_current = {
  series: {
    lines: {
      show: true,
      lineWidth: 7,
      steps: true
    },
    points: {
      show: true,
      radius: 4
    },
  },
  xaxis: {
    min: 1,
    max: 30,
    tickFormatter: dayFormatter,
    tickColor: "rgba(255, 255,255, 0)",
    tickDecimals: 0,
    minTickSize: 5
  },
  yaxis: {
    min: 1,
    tickFormatter: dollarFormatter
  },
  grid: {
    hoverable: true,
    clickable: true,
    markings: [{
      xaxis: {
        from: temp_day,
        to: temp_day
      },
      color: '#A4A4A4'
    }],
  },
};
4

0 に答える 0