New to Kendo UI for Angular? Start a free 30-day trial
RadioButtonModule
Defines the NgModule for the RadioButton directive and RadioButton component.
Use this module to add the RadioButton directive and component to your NgModule-based Angular application.
typescript
import { RadioButtonModule } from '@progress/kendo-angular-inputs';
import { NgModule } from '@angular/core';
import { BrowserModule } from '@angular/platform-browser';
import { AppComponent } from './app.component';
@NgModule({
declarations: [AppComponent],
imports: [BrowserModule, RadioButtonModule],
bootstrap: [AppComponent]
})
export class AppModule {}