在 react-chartist 中将图例添加到图表

Add legend to Chart in react-chartist

我安装了插件 chartist-plugin-legend。我想在我的图表中添加图例,但出现错误 'Chartist' 未定义 no-undef。如何将图例添加到图表?

import ChartistGraph from 'react-chartist';
import ChartistTooltip from 'chartist-plugin-tooltips-updated';

const options = {
 
  plugins: [
    Chartist.plugins.legend(),
    ChartistTooltip({
      anchorToPoint: false,
      appendToBody: true,
      seriesName: false,
    }),
  ],
};

<ChartistGraph
          className='ct-chart-line'
          data={data}
          options={options}
          type='Line'
/>

您似乎没有导入 Chartist 库。您需要使用 npm install --save chartistimport Chartist from 'chartist';.

将其添加到您的项目中