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