Getting Started with Angular Bullet Chart Component
This section explains the steps required to create a simple Angular Bullet Chart and demonstrates the basic usage of the Angular Bullet Chart component.
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.
Ready to streamline your Syncfusion® Angular development? Discover the full potential of Syncfusion® Angular components with Syncfusion® AI Coding Assistant. Effortlessly integrate, configure, and enhance your projects with intelligent, context-aware code suggestions, streamlined setups, and real-time insights—all seamlessly integrated into your preferred AI-powered IDEs like VS Code, Cursor, Syncfusion® CodeStudio and more. Explore Syncfusion® AI Coding Assistant
Prerequisites
Before getting started, ensure that your environment meets the system requirements for Syncfusion® Angular UI components, which covers supported Node.js, Angular, and @syncfusion/ej2-angular-charts versions.
Setup the Angular Application
A straightforward approach to begin with Angular is to create a new application using the Angular CLI. Install Angular CLI globally with the following command:
npm install -g @angular/cliVerify the installation:
ng versionAngular 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, the CLI generates files like
app.component.ts,app.component.html,app.component.css, etc. 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 Bullet Chart component for demonstration. Add the Angular Chart package with:
ng add @syncfusion/ej2-angular-chartsThe above command will perform the following configurations:
- Add the
@syncfusion/ej2-angular-chartspackage and peer dependencies to yourpackage.json. - Import the Bullet Chart component in your application.
For more details on version compatibility, refer to the Version Compatibility section.
Ivy library distribution package
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-chartsAngular compatibility compiled package (ngcc)
For applications not compiled with Ivy, use the ngcc tagged packages:
Note: 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 install @syncfusion/[email protected]Add the Bullet Chart Component
Modify the template in src/app/app.component.ts (or src/app/app.ts in Angular 20+) to render the Bullet Chart component:
import { Component, ViewEncapsulation } from '@angular/core';
import { BulletChartModule } from '@syncfusion/ej2-angular-charts';
@Component({
imports: [BulletChartModule],
standalone: true,
selector: 'app-root',
// specifies the template string for the Bullet Chart component
template: `<ejs-bulletchart id='container'></ejs-bulletchart>`,
encapsulation: ViewEncapsulation.None
})
export class AppComponent { }Note:
ViewEncapsulation.Noneis required so that the chart’s internal styles are not scoped to this component.
The app-root selector matches the root element in src/index.html, which is the default generated by Angular CLI.
Use the ng serve command to run the application in the browser:
ng serveVerify that an empty Bullet Chart renders before proceeding to the next step.
import { Component } from '@angular/core';
import { BulletChartModule } from '@syncfusion/ej2-angular-charts';
@Component({
imports: [BulletChartModule],
standalone: true,
selector: 'app-root',
// specifies the template string for the Bullet Chart component
template: `<ejs-bulletchart id="chart-container"></ejs-bulletchart>`
})
export class AppComponent {
}import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));Module Injection
Bullet Chart components are segregated into individual feature-wise modules. To use a particular feature, you need to inject its feature service in the app.component.ts file. This example will use the tooltip feature of the chart.
-
BulletTooltipService- Inject this provider to use the tooltip feature.
Update src/app/app.component.ts to import the service and add it to the providers array of the component:
import { Component, ViewEncapsulation } from '@angular/core';
import { BulletChartModule, BulletTooltipService } from '@syncfusion/ej2-angular-charts';
@Component({
imports: [BulletChartModule],
standalone: true,
selector: 'app-root',
providers: [BulletTooltipService],
template: `<ejs-bulletchart id='container' [tooltip]='tooltip'></ejs-bulletchart>`,
encapsulation: ViewEncapsulation.None
})
export class AppComponent {
public tooltip: Object = { enable: true };
}Bind Data to the Bullet Chart
This section explains how to plot JSON data to the Bullet Chart. Update src/app/app.component.ts:
import { Component, OnInit, ViewEncapsulation } from '@angular/core';
import { BulletChartModule } from '@syncfusion/ej2-angular-charts';
@Component({
imports: [BulletChartModule],
standalone: true,
selector: 'app-root',
template: `<ejs-bulletchart id='container' [dataSource]='data' valueField='value' targetField='target'></ejs-bulletchart>`,
encapsulation: ViewEncapsulation.None
})
export class AppComponent implements OnInit {
public data: Object[] = [];
ngOnInit(): void {
// Data for Bullet Chart
this.data = [
{ value: 100, target: 80 },
{ value: 200, target: 180 },
{ value: 300, target: 280 },
{ value: 400, target: 380 },
{ value: 500, target: 480 }
];
}
}Now assign the local data to the dataSource property. The value and target values should be mapped with the valueField and targetField properties respectively.
The Bullet Chart renders one horizontal bar per data row, with a small target marker indicating the goal value. Bars are drawn against a quantitative axis.
import { Component } from '@angular/core';
import { BulletChartModule } from '@syncfusion/ej2-angular-charts';
@Component({
imports: [BulletChartModule],
standalone: true,
selector: 'app-root',
template: `<ejs-bulletchart valueField='value' targetField='target'
[minimum]='minimum' [maximum]='maximum' [interval]='interval' [dataSource]='data'>
</ejs-bulletchart>`
})
export class AppComponent {
public minimum: number = 0;
public maximum: number = 300;
public interval: number = 50;
public data: Object[] = [
{ value: 100, target: 80 },
{ value: 200, target: 180 },
{ value: 300, target: 280 },
{ value: 400, target: 380 },
{ value: 500, target: 480 },
];
}import { bootstrapApplication } from '@angular/platform-browser';
import { AppComponent } from './app.component';
import 'zone.js';
bootstrapApplication(AppComponent).catch((err) => console.error(err));Troubleshooting
If the Bullet Chart does not render as expected, check for these common issues:
-
“No provider for BulletTooltipService” error: Confirm that the relevant
*Serviceis added to the component’sprovidersarray. Each feature requires its corresponding service. -
Chart not visible: Verify that
ViewEncapsulation.Noneis set on the component, that theidon<ejs-bulletchart>is unique, and that theselectormatches the root element inindex.html. -
Data not displayed: Check that the
valueFieldandtargetFieldvalues match the field names in your data source exactly. -
Build errors: Run
ng versionto confirm that Node.js, Angular CLI, and@syncfusion/ej2-angular-chartsare on supported versions.
See also
- Bullet Chart Dimensions — Configure the size and margins of the Bullet Chart.
- Bullet Chart Data Label — Customize the data labels on the bars.
- Bullet Chart Title — Customize the chart title and subtitle.
- Bullet Chart Value Bar — Customize the value bar appearance.