我安装了插件 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'
/>
偶然的你
相关分类