New to Kendo UI for Angular? Start a free 30-day trial
BarcodeModule
Represents the NgModule definition for the Barcode component.
Use this module to add Barcode support to your application.
ts
// Import the BarcodeModule.
import { BarcodeModule } from '@progress/kendo-angular-barcodes';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, BarcodeModule],
bootstrap: [AppComponent]
})
export class AppModule {}