---
title: "High Performance Charts"
framework: angular
version: "14.1.0"
---

# High Performance Charts

## Ordered Data

#### Ordered Data

```ts
// Angular entry point file
import '@angular/compiler';
import { bootstrapApplication } from '@angular/platform-browser';

import { AppComponent } from './app.component';

bootstrapApplication(AppComponent);
```

[Live example: Ordered Data](https://www.ag-grid.com/charts/angular/high-performance-charts/examples/ordered-data)

## Stacked Data

#### Stacked Data

```ts
// Angular entry point file
import '@angular/compiler';
import { bootstrapApplication } from '@angular/platform-browser';

import { AppComponent } from './app.component';

bootstrapApplication(AppComponent);
```

[Live example: Stacked Data](https://www.ag-grid.com/charts/angular/high-performance-charts/examples/stacked-data)

## Bubble, Scatter

#### Bubble, Scatter

```ts
// Angular entry point file
import '@angular/compiler';
import { bootstrapApplication } from '@angular/platform-browser';

import { AppComponent } from './app.component';

bootstrapApplication(AppComponent);
```

[Live example: Bubble, Scatter](https://www.ag-grid.com/charts/angular/high-performance-charts/examples/bubble-scatter)
