New to Kendo UI for Angular? Start a free 30-day trial
ExcelModule
Represents the NgModule definition for the Excel component of the Grid.
ts
import { NgModule } from '@angular/core';
import { BrowserModule } from "@angular/platform-browser";
import { GridModule, ExcelModule } from '@progress/kendo-angular-grid';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, GridModule, ExcelModule],
bootstrap: [AppComponent]
})
export class AppModule {}