答案 0 :(得分:0)
您将必须关闭其中具有数据网格并且还需要覆盖的组件的视图封装。
从'@ angular / core'导入{Component,ViewEncapsulation};
@Component({
selector: 'my-app',
templateUrl: './app.component.html',
styleUrls: [ './app.component.css' ],
encapsulation: ViewEncapsulation.None,
})
export class AppComponent {}
然后,您可以直接定位.datagrid-placeholder-image
元素并覆盖background-image
属性
.datagrid-host .datagrid .datagrid-table .datagrid-placeholder-container .datagrid-placeholder-image{
background-image: url('data:image/svg+xml;utf8,<svg height="100px" width="100px">YOUR SVG CODE HERE</svg>');
}
Here是带有覆盖的运行中的堆栈闪电战。