@syncfusion/ej2-angular-charts
TypeScript icon, indicating that this package has built-in type declarations

25.1.40 • Public • Published

Angular Charts Components

The Angular Charts component is a well-crafted charting component for visualizing data with 50+ charts and graphs, ranging from line to financial types. It can bind data from datasource such as array of JSON objects, OData web services or DataManager. All chart elements are rendered using Scalable Vector Graphics (SVG).

What's Included in the Angular Charts Package

The Angular Charts package includes the following list of components.

Angular Chart

The Angular Chart Component is a feature-rich chart component with built-in support for over 50 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.

Getting started . Online demos . Learn more

Angular Chart Component

Key features

Angular Accumulation Charts

Built-in support for pie, doughnut, pyramid and funnel chart types, to show the proportions and percentages between the categories.

Getting started . Online demos . Learn more

Angular Accumulation Chart Component

Key features

  • Chart types: Supports Pie, Doughnut, Pyramid and Funnel charts.
  • Smart labels: Supports arrangement of data labels smartly to avoid overlapping when the data point value falls in close range.
  • Grouping: Supports grouping of data points based on value and point count.
  • Semi-pie: Provides options to customize the start and end angle of the pie chart.
  • Legend: Provides options to display additional information about the points with the help of legend.
  • Tooltip: Provides great user experiance by including a set of interactive features such as tooltip, drill-down, events, and selection.

Angular Stock Chart

The Angular Stock Chart Component is a well-crafted, easy-to-use financial charting package to track and visualize stock price of any company over a specific period using charting and range tools.

Getting started . Online demos . Learn more

Angular Stock Chart Component

Key features

  • Data binding: Bind the stock chart component with an array of JSON objects or DataManager. Other than chart series, data label and tooltip can also bound to your data.
  • Range selector: Supports range selector to filter a date range for data that needs to be visualized.
  • Period selector: Supports period selector to select predefined periods just by a single click.
  • Technical indicators: Incidators allows to analyze the past and predict the future market trends based on historic price, volume, or open interest.
  • Trendlines: Predicts the future trends with predetermined data for any measurements.
  • Stock events: Supports stock events to show different kinds of market events on the chart.
  • Export: Provides the options to Export the stock chart to PDF, SVG and CSV formats.
  • Appearance: Colors for the stock chart are picked by the built-in theme, but each element of the stock chart can be customized by simple configuration options.
  • Tooltip: Provides great user experiance by including a set of interactive features such as tooltip, events, and trackball.

Angular Range Navigator

The Angular Range Navigator Component is an interface for selecting a small range from a large collection. It is commonly used in financial dashboards to filter a date range for data that needs to be visualized.

Getting started . Online demos . Learn more

Angular Range Navigator Component

Key features

  • Data sources: Bind the range navigator component with an array of JSON objects or DataManager.
  • Tooltip: Provides great user experiance by including a set of interactive features such as tooltip, events, and animation.
  • Lightweight: Supports light-weight range navigator to load in mobile device.
  • Period selector: Provides options to select the data over the custom period.
  • Axis types: Supports multiple axis and able to plot different data such as numbers, datetime, logarithmic and string.

Angular Sparkline

The Angular Sparkline Component is a very small chart control drawn without axes or coordinates. The sparklines are easy to interpret and convey more information to users by visualizing data in a small amount of space.

Getting started . Online demos . Learn more

Angular Sparkline Component

Key features

  • Series types: Supports five types of sparklines : line, area, column, win loss, and pie to show data trends.
  • Axis types: Supports multiple axis and able to plot different data such as numbers, datetime, logarithmic and string.
  • Data label: Supports data label to annotate points with label to improve the readability of data.
  • Range band: Provides options to highlight specific range of values.
  • Tooltip: Provides great user experiance by including a set of interactive features such as tooltip, events, and trackball.

Angular Bullet Chart

The Angular Bullet Chart Component is a interface to visually compare measures, similar to the commonly used bar chart. A bullet chart displays one or more measures and compares them with a target value.

Getting started . Online demos . Learn more

Angular Bullet Chart Component

Key features

  • Multiple measures: Provides options to render multiple measure bars as well as multiple target bars to allow comparison of several measures at once.
  • Legend: Provides options to display additional information about the target and actual bar.
  • RTL support: Provides a full-fledged right-to-left mode which aligns axis, tooltip, legend and data in the chart component from right to left.
  • Tooltip: Provides options to display additional information about target and actual on mouse hover.

Angular Smith Chart

The Angular Smith Chart Component visualize data of high frequency circuit applications. It contains two sets of circles to plot parameters of transmission lines.

Getting started . Online demos . Learn more

Angular Smith Chart Component

Key features

  • Legend: Provides options to display additional information about the series.
  • Data label: Supports data label to annotate points with label to improve the readability of data.
  • Tooltip: Provides options to display additional information about data points on mouse hover.
  • Print and Export: Provides support to print and export the rendered smith chart for future use.

Setup

Create an Angular Application

You can use Angular CLI to setup your Angular applications. To install the Angular CLI, use the following command.

npm install -g @angular/cli

Create a new Angular application using the following Angular CLI command.

ng new my-app
cd my-app

Adding Syncfusion Chart package

All Syncfusion Angular packages are available in npmjs.com. To install the Angular chart package, use the following command.

ng add @syncfusion/ej2-angular-charts

The above command does the below configuration to your Angular app.

  • Adds @syncfusion/ej2-angular-charts package and its peer dependencies to your package.json file.
  • Imports the ChartModule in your application module app.module.ts.
  • Registers the Syncfusion UI default theme (material) in the angular.json file.

This makes it easy to add the Syncfusion Angular Charts module to your project and start using it in your application.

Add Chart component

In src/app/app.component.ts, use <ejs-chart> selector in the template attribute of the @Component directive to render the Syncfusion Angular Chart component.

import { Component, OnInit } from '@angular/core';

@Component({
    selector: 'app-root',
    template: `<ejs-chart id="chart-container" [primaryXAxis]='primaryXAxis'>
               <e-series-collection>
                  <e-series [dataSource]='chartData' type='Line' xName='month' yName='sales' name='Sales'></e-series>
               </e-series-collection>
               </ejs-chart>`
})
export class AppComponent implements OnInit {

    public data: object[] = [];

    ngOnInit(): void {
         this.chartData = [
         { month: 'Jan', sales: 35 }, { month: 'Feb', sales: 28 },
         { month: 'Mar', sales: 34 }, { month: 'Apr', sales: 32 },
         { month: 'May', sales: 40 }, { month: 'Jun', sales: 32 },
         { month: 'Jul', sales: 35 }, { month: 'Aug', sales: 55 },
         { month: 'Sep', sales: 38 }, { month: 'Oct', sales: 30 },
         { month: 'Nov', sales: 25 }, { month: 'Dec', sales: 32 }
         ];
         this.primaryXAxis = {
           valueType: 'Category'
         };
    }
}

Supported frameworks

Chart components are available in following list of frameworks.


     JavaScript    

       React      

       Vue         

  ASP.NET Core  

  ASP.NET MVC  

Showcase samples

Support

Product support is available through the following mediums.

Changelog

Check the changelog here. Get minor improvements and bug fixes every week to stay up to date with frequent updates.

License and copyright

This is a commercial product and requires a paid license for possession or use. Syncfusion’s licensed software, including this component, is subject to the terms and conditions of Syncfusion's EULA. To acquire a license for 80+ Angular UI components, you can purchase or start a free 30-day trial.

A free community license is also available for companies and individuals whose organizations have less than $1 million USD in annual gross revenue and five or fewer developers.

See LICENSE FILE for more info.

© Copyright 2024 Syncfusion, Inc. All Rights Reserved. The Syncfusion Essential Studio license and copyright applies to this distribution.

Package Sidebar

Install

npm i @syncfusion/ej2-angular-charts

Weekly Downloads

9,749

Version

25.1.40

License

SEE LICENSE IN license

Unpacked Size

3.04 MB

Total Files

519

Last publish

Collaborators

  • syncfusionorg
  • essentialjs2
  • syncfusion-javascript