角度的,如何通过继承模板和样式来扩展node_module类

时间:2019-05-08 21:35:56

标签: angular inheritance ngx-charts

我正在使用ngx-charts https://github.com/swimlane/ngx-charts,并且有业务需求来修改图例值。我基本上需要修改名为getInnerDomain()的组件功能之一。我希望新的子组件使用父级的模板和样式。子组件是否可以使用父组件的模板?我已经尝试过这种方法

template: `<ng-container *ngComponentOutlet="BarVertical2DComponent"></ng-container>`,

但我收到此错误

 No component factory found for BarVertical2DComponent. Did you add it to @NgModule.entryComponents?

我将它添加到了app.module这样

entryComponents: [ BarVertical2DComponent ],

但是它仍然给我同样的错误。

有什么想法可以做到这一点吗? 我尝试的另一种方法是将父母的模板硬编码到孩子的模板中,但是我遇到了一些动画错误

0 个答案:

没有答案