1

ここに画像の説明を入力

x 軸に月、y 軸に値を持つ折れ線グラフを作成しています。問題は、データ ポイントが 1 つの場合、その周りに線が引かれていないことです。注釈プラグインを使用して水平線を描くことができましたが、値が > 0 の場合、曲線であるはずなので、線を描く方法がわかりません。

export const optionsMap = () => ({
  maintainAspectRatio: false,
  responsive: true,
  legend: {
    display: false
  },
  elements: {
    topLabel: {}
  },
  layout: {
    padding: {
      top: 150,
      right: 45,
      left: 40,
      bottom: 5,
    }
  },
  plugins: {
    centerText: false,
    datalabels: false,
  },
  annotation: {
    drawTime: 'beforeDatasetsDraw',
    annotations: [
      {
        type: 'line',
        scaleID: 'y-axis-0',
        value: 0.01,
        mode: "horizontal",
        borderColor: "#347aeb",
        borderWidth: 2,
        backgroundColor: "rgba(255, 0, 0, 0.3)"

      }
    ]
  }
});

4

1 に答える 1