luoyang-screen/src/page/LinePage/Center/LineChart/index.tsx
2024-08-15 08:50:17 +08:00

7 lines
214 B
TypeScript

import ReactECharts from "echarts-for-react";
import getOptions from "./chart.config";
function LineChart() {
return <ReactECharts option={getOptions()} style={{ height: "100%" }} />;
}
export default LineChart;