How can I help you?
Getting Started with Angular Circular Gauge Component
27 Feb 20268 minutes to read
This guide demonstrates how to set up and configure the Syncfusion Angular Circular Gauge component, from initial installation through enabling core features like pointers, ranges, and annotations.
Note: This guide supports Angular 21 and other recent Angular versions. For detailed compatibility with other Angular versions, please refer to the Angular version support matrix. Starting from Angular 19, standalone components are the default, and this guide reflects that architecture.
Prerequisites
Ensure your development environment meets the System Requirements for Syncfusion® Angular UI Components.
Setup the Angular application
A straightforward approach to beginning with Angular is to create a new application using the Angular CLI. Install Angular CLI globally with the following command:
npm install -g @angular/cliAngular 21 Standalone Architecture: Standalone components are the default in Angular 21. This guide uses the modern standalone architecture. If you need more information about the standalone architecture, refer to the Standalone Guide.
Installing a specific version
To install a particular version of Angular CLI, use:
npm install -g @angular/[email protected]Create a new application
With Angular CLI installed, execute this command to generate a new application:
ng new syncfusion-angular-app- This command will prompt you to configure settings like enabling Angular routing and choosing a stylesheet format.
? Which stylesheet format would you like to use? (Use arrow keys)
> CSS [ https://developer.mozilla.org/docs/Web/CSS ]
Sass (SCSS) [ https://sass-lang.com/documentation/syntax#scss ]
Sass (Indented) [ https://sass-lang.com/documentation/syntax#the-indented-syntax ]
Less [ http://lesscss.org ]
- By default, a CSS-based application is created. Use SCSS if required:
ng new syncfusion-angular-app --style=scss- During project setup, when prompted for the Server-side rendering (SSR) option, choose the appropriate configuration.

- Select the required AI tool or ‘none’ if you do not need any AI tool.

- Navigate to your newly created application directory:
cd syncfusion-angular-appNote: In Angular 19 and below, it uses
app.component.ts,app.component.html,app.component.cssetc. In Angular 20+, the CLI generates a simpler structure withsrc/app/app.ts,app.html, andapp.css(no.component.suffixes).
Adding Syncfusion® Angular packages
Syncfusion®’s Angular component packages are available on npmjs.com. To use Syncfusion® Angular components, install the necessary package.
This guide uses the Angular Circular Gauge Component for demonstration. Add the Angular Circular Gauge component with:
ng add @syncfusion/ej2-angular-circulargaugeThis command will perform the following configurations:
- Add the
@syncfusion/ej2-angular-circulargaugepackage and peer dependencies to yourpackage.json. - Import the Circular Gauge component in your application.
- Register the default Syncfusion® Material theme in
angular.json.
For more details on version compatibility, refer to the Version Compatibility section.
Syncfusion® offers two package structures for Angular components:
- Ivy library distribution package format
- Angular compatibility compiler (ngcc), which is Angular’s legacy compilation pipeline.
Syncfusion®’s latest Angular packages are provided as Ivy-compatible and suited for Angular 12 and above. To install the package, execute:
ng add @syncfusion/ej2-angular-circulargaugeFor applications not compiled with Ivy, use the ngcc tagged packages:
The ngcc packages are still compatible with Angular CLI versions 15 and below. However, they may generate warnings suggesting the use of IVY compiled packages. Starting from Angular 16, support for the ngcc package has been completely removed. If you have further questions regarding ngcc compatibility, please refer to the following FAQ.
npm add @syncfusion/[email protected]Add Circular Gauge component
Modify the template in the [src/app/app.ts] file to render the Circular Gauge component. Add the Angular Circular Gauge by using <ejs-circulargauge> selector in template section of the app.ts file.
import { Component, OnInit } from '@angular/core';
import { CircularGaugeModule } from '@syncfusion/ej2-angular-circulargauge';
@Component({
imports: [CircularGaugeModule],
standalone: true,
selector: 'app-root',
// specifies the template string for the CircularGauge component
template: `<ejs-circulargauge id='circular-container'></ejs-circulargauge>`
})
export class AppComponent implements OnInit {
ngOnInit(): void {
}
}Module injection
To create a Circular Gauge with additional features, inject the required modules. The following modules extend the Circular Gauge’s basic functionality:
- GaugeTooltipService - Inject this module to enable tooltip features.
- AnnotationsService - Inject this module to enable annotations features.
- LegendService - Inject this module to enable legend features.
These modules should be injected into the providers section of the component class.
import { Component, OnInit } from '@angular/core';
import { CircularGaugeModule, GaugeTooltipService, AnnotationsService, LegendService } from '@syncfusion/ej2-angular-circulargauge';
@Component({
imports: [CircularGaugeModule],
providers: [GaugeTooltipService, AnnotationsService, LegendService],
standalone: true,
selector: 'app-root',
template: `<ejs-circulargauge id='circular-container'></ejs-circulargauge>`
})
export class AppComponent implements OnInit {
ngOnInit(): void {
}
}Additional feature modules are available here.
Run the application
Use the following command to run the application in the browser.
ng serve --openThe following example shows a basic Circular Gauge. By default, the Circular Gauge displays a scale from 0 to 100.
import { Component } from '@angular/core';
import { CircularGaugeModule } from '@syncfusion/ej2-angular-circulargauge';
@Component({
imports: [CircularGaugeModule],
standalone: true,
selector: 'app-container',
// specifies the template string for the CircularGauge component
template: `<ejs-circulargauge id="circular-container"></ejs-circulargauge>`
})
export class AppComponent { }import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));Set Pointer Value
The Circular Gauge displays data using pointers on an axis. You can customize the pointer’s appearance and position using various properties.
Set a pointer value using the value property in the pointers collection. The Circular Gauge uses a hierarchical structure:
- Axes - The circular scale containing pointers and ranges
- Pointers - Indicators that point to values on the axis
- Ranges - Colored segments that highlight specific value ranges
import { Component } from '@angular/core';
import { CircularGaugeModule } from '@syncfusion/ej2-angular-circulargauge';
@Component({
imports: [CircularGaugeModule],
standalone: true,
selector: 'app-container',
template: `<ejs-circulargauge id="circular-container">
<e-axes>
<e-axis>
<e-pointers>
<e-pointer [value]="35"></e-pointer>
</e-pointers>
</e-axis>
</e-axes>
</ejs-circulargauge>`
})
export class AppComponent { }import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));See also
• Circular Gauge Axes
• Circular Gauge Pointers
• Circular Gauge Ranges
• Circular Gauge Annotations