Open
Description
hi guys,
I wanted to use the instructions to use tree shaking and then did an analysis of the bundle.
See for yourself
thats a total of 6mb for rendering three different kinds of charts. don't think that's the way it was intended. echarts show up twice, once in the vendor module where it seems like everything gets pulled in and once outside of it.
here is. my config (./config/echarts-config.ts)
import {
TitleComponent,
TooltipComponent,
GridComponent,
DatasetComponent,
TransformComponent,
LegendComponent,
} from 'echarts/components';
import { BarChart, LineChart, PieChart } from 'echarts/charts';
import { LabelLayout, UniversalTransition } from 'echarts/features';
import { CanvasRenderer } from 'echarts/renderers';
import 'echarts/theme/macarons.js';
import * as echarts from 'echarts/core';
// Register the required components
echarts.use([
BarChart,
LineChart,
TitleComponent,
TooltipComponent,
GridComponent,
DatasetComponent,
TransformComponent,
LabelLayout,
UniversalTransition,
CanvasRenderer,
LegendComponent,
PieChart,
]);
export { echarts };
then in my app.module.ts
import { echarts } from './config/echarts-config';
import { NgxEchartsDirective, provideEchartsCore } from 'ngx-echarts';
....
imports: [
NgxEchartsDirective
],
providers: [
provideEchartsCore({ echarts })
],
please let me know if you can reproduce this.
Metadata
Metadata
Assignees
Labels
No labels