图表js注释标签文本正在切割

时间:2018-02-21 09:54:00

标签: chart.js react-chartjs

我在我的图表中使用react-chart js我正在使用annotation绘制一条多垂直线,这是我用来画线的示例代码

const testValue = ['0.019', '0.033', '0.305', '0.428', '0.582', '0.826'];
    const splitArrayPopup = map(testValue, el => ({
      type: 'line',
      mode: 'vertical',
      scaleID: 'x-axis-0',
      value: parseFloat(el),
      borderColor: '#e0e2e2',
      borderWidth: 1,
      borderDash: [3, 3],
      label: {
        content: parseFloat(el),
        position: 'bottom',
        enabled: true,
        backgroundColor: 'transparent',
        fontColor: '#e0e2e2',
        fontStyle: 'normal',
        yPadding: 0,
        yAdjust: -10,
      },
    }));

我需要在图表的底部显示我的标签文字,我的意思是在图表之外,现在让我进入图表。

0 个答案:

没有答案