UNPKG

highcharts-angular

Version:
606 lines (464 loc) 26.6 kB
# Highcharts Angular Official minimal Highcharts integration for Angular. ## Table of Contents 1. [Getting Started](#getting-started) 1. [General Prerequisites](#general-prerequisites) 2. [Installing](#installing) 3. [Usage](#usage) 4. [SSR Support](#ssr-support) 5. [Angular Elements and `useHTML`](#angular-elements-and-usehtml) 6. [Upgrade to v5](#upgrade-to-v5) 2. [Options Details](#options-details) 3. [Chart Instance](#chart-instance) 4. [Highcharts Partial Loading on the Component Level](#highcharts-partial-loading-on-the-component-level) 1. [Loading a Module](#to-load-a-module) 2. [Loading a Map for Highcharts Maps](#to-load-a-map-for-highcharts-maps) 3. [Loading a Map for Highcharts Stock](#to-load-a-stock-for-highcharts) 4. [Loading a Wrapper](#to-load-a-wrapper) 5. [Demo App](#demo-app) 1. [Play with the App](#play-with-the-app) 2. [Files to Modify](#files-to-play-with) 6. [Release](#release) 7. [Help and FAQ](#help-and-faq) --- ## Getting Started ### General Prerequisites Ensure that **Node.js**, **npm**, and **Angular** are installed and up to date. Refer to the compatibility table below for the required versions: | Highcharts Angular Version | Node.js | Angular | Highcharts | Documentation | | -------------------------- | -------- | -------- | ---------- | -------------------------------------------------------------------------------- | | 5.0.0 | >=18.19 | >=19.0.0 | >=12.2.0 | [README](https://github.com/highcharts/highcharts-angular/blob/v5.0.0/README.md) | | 4.0.0 | >=16.14 | >=16.0.0 | >=11.0.0 | [README](https://github.com/highcharts/highcharts-angular/blob/v4.0.1/README.md) | | 3.1.2 | >=14.13 | >=15.0.0 | >=10.3.3 | [README](https://github.com/highcharts/highcharts-angular/blob/v3.1.2/README.md) | | 3.0.0 | >=14.13 | >=9.0.0 | >=8.0.0 | [README](https://github.com/highcharts/highcharts-angular/blob/v3.0.0/README.md) | | <2.10.0 | >=6.10.2 | >=6.0.0 | >=6.0.0 | [README](https://github.com/highcharts/highcharts-angular/blob/v2.9.0/README.md) | --- ### Installing Install the `highcharts-angular` package along with the [highcharts](https://www.highcharts.com/docs/getting-started/install-from-npm) dependency: ```bash npm install highcharts-angular highcharts --save ``` Then, provide Highcharts with minimal configuration in your `app.config.ts` file: ```ts import { provideHighcharts } from 'highcharts-angular'; export const appConfig: ApplicationConfig = { providers: [ provideHighcharts(), // Other providers here ... ], }; ``` Or, alternatively, provide global configuration for all charts within your project: ```ts import { provideHighcharts } from 'highcharts-angular'; export const appConfig: ApplicationConfig = { providers: [ provideHighcharts({ // Optional: Define the Highcharts instance dynamically instance: () => import('highcharts'), // Global chart options applied across all charts options: { title: { style: { color: 'tomato', }, }, legend: { enabled: false, }, }, // Include Highcharts additional modules (e.g., exporting, accessibility) or custom themes modules: () => { return [ import('highcharts/esm/modules/accessibility'), import('highcharts/esm/modules/exporting'), import('highcharts/esm/themes/sunset'), ]; }, }), // Other providers here ... ], }; ``` ### Usage You can use Highcharts in your Angular application either as a **Component** or a **Directive**. Below are the usage examples for both approaches: --- #### 1. Using the Component In your `app.component.ts`, import the required `HighchartsChartComponent` and other relevant types at the top of the file: ```ts import { Component } from '@angular/core'; import { HighchartsChartComponent, ChartConstructorType } from 'highcharts-angular'; @Component({ template: ` <highcharts-chart [constructorType]="chartConstructor" [options]="chartOptions" [(update)]="updateFlag" [oneToOne]="oneToOneFlag" class="chart" /> `, styles: [`.chart { width: 100%; height: 400px; display: block; }`], imports: [HighchartsChartComponent] }) export class AppComponent { chartOptions: Highcharts.Options = { ... }; // Required chartConstructor: ChartConstructorType = 'chart'; // Optional, defaults to 'chart' updateFlag: boolean = false; // Optional oneToOneFlag: boolean = true; // Optional, defaults to false } ``` #### 2. Using the Directive In your `app.component.ts`, import the `HighchartsChartDirective` and other relevant types at the top of the file: ```ts import {Component} from '@angular/core'; import { HighchartsChartDirective, ChartConstructorType } from 'highcharts-angular'; @Component({ template: ` <div highchartsChart [constructorType]="chartConstructor" [options]="chartOptions" [(update)]="updateFlag" [oneToOne]="oneToOneFlag" class="chart" ></div> `, styles: [`.chart { width: 100%; height: 400px; display: block; }`], imports: [HighchartsChartDirective] }) export class AppComponent { chartOptions: Highcharts.Options = { ... }; // Required chartConstructor: ChartConstructorType = 'chart'; // Optional, defaults to 'chart' updateFlag: boolean = false; // Optional oneToOneFlag: boolean = true; // Optional, defaults to false } ``` #### 3. Example This is the minimum example you can start with: ```ts import { Component } from '@angular/core'; import { HighchartsChartDirective } from 'highcharts-angular'; @Component({ template: ` <div highchartsChart [options]="chartOptions" class="chart"></div> `, styles: [ ` .chart { width: 100%; height: 400px; display: block; } `, ], imports: [HighchartsChartDirective], }) export class AppComponent { chartOptions: Highcharts.Options = { series: [ { data: [1, 2, 3], type: 'line', }, ], }; } ``` Build and run your Angular app to see a basic line chart. Used options are explained [below](#options-details). ### SSR Support Both the component and directive in this library are fully compatible with Angular Universal (SSR). In SSR, the code runs twice: once on the server (in an environment without a window object) and once in the browser. Since Highcharts is tightly integrated with browser events, it should not run on the server-side. But don’t worry—we’ve already handled this case for you! 😉 Our showcase application includes an example of SSR integration. You can try it by running: ```cli ng serve my-ssr-app --open ``` ### Highcharts AST Highcharts sanitizes HTML/SVG content with its internal AST (Abstract Syntax Tree) parser. By default, only a safe list of attributes and tags is allowed. If you need to support custom attributes or elements (for example, to render extra data attributes), you must extend the AST configuration before Highcharts is initialized. ```ts provideHighcharts({ instance: () => import('highcharts/esm/highcharts').then((m) => { const Highcharts = m.default; // Allow custom attributes Highcharts.AST.allowedAttributes.push('custom-attribute'); // Allow custom elements Highcharts.AST.allowedTags.push('my-custom-tag'); return Highcharts; }), }), ``` ### Angular Elements and useHTML First, install angular elements: ```cli npm install @angular/elements --save ``` Include in main.ts file your element tag inside allowedTags and [element properties](https://angular.io/guide/elements#mapping) inside allowedAttributes: ```ts if (Highcharts && Highcharts.AST) { Highcharts.AST.allowedTags.push('translation-element'); Highcharts.AST.allowedAttributes.push('translation-key'); } ``` Define your element in the constructor of the component that will use it: ```ts private defineTranslationElement() { if (isNil(customElements.get('translation-element'))) { const translationElement = createCustomElement(TranslationComponent, {injector: this.injector}); customElements.define('translation-element', translationElement); } } ``` Then, create the element, set properties and use it in the chart: ```ts const translationEl: NgElement & WithProperties<TranslationComponent> = document.createElement(translationElementTag); translationEl.setAttribute('translation-key', 'shared.title'); const chartOptions: Highcharts.Options = { title: { text: translationEl.outerHTML, useHTML: true, }, ... } ``` For a more detailed view take a look at the [Online Examples - Angular Elements and useHTML](#online-examples) ### Upgrade to v5 Version 5 introduces significant improvements and changes to align with modern Angular practices. **Please review the following breaking changes before upgrading:** #### Breaking Changes - Dropped `HighchartsChartModule`. Replace your usage of `HighchartsChartModule` with the new `provideHighcharts()` and the standalone `HighchartsChartComponent` or `HighchartsChartDirective`. - Dropped `callbackFunction`. Replace your usage of `[callbackFunction]="myFunction"` with `(chartInstance)="myFunction($event)"`. - `chartInstance` will not emit at all during destruction anymore. ## Options details | Parameter | Type | Required | Defaults | Description | | ------------------- | ---------------------- | -------- | --------- | ----------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | | `[constructorType]` | `ChartConstructorType` | No | `'chart'` | A string for the [constructor method](https://www.highcharts.com/docs/getting-started/your-first-chart). Official constructors include: <br>- `'chart'` for Highcharts charts <br>- `'stockChart'` for Highcharts Stock <br>- `'mapChart'` for Highcharts Maps <br>- `'ganttChart'` for Highcharts Gantt <br><br> Note that `'stockChart'`, `'mapChart'`, and `'ganttChart'` require loading the appropriate package or module. | | `[options]` | `Object` | Yes | `-` | The chart options as described in the [Highcharts API reference](http://api.highcharts.com/highcharts). A minimal working object for basic testing is `{ series:[{ data:[1, 2] }] }`. | | `[(update)]` | `Boolean` | No | `-` | A boolean to trigger a chart update. Angular does not detect nested changes in objects passed to a component. Set the corresponding variable (`updateFlag` in the example) to `true`, and after the update is done, it will asynchronously change back to `false` by the Highcharts Angular component. | | `[oneToOne]` | `Boolean` | No | `false` | The `oneToOne` parameter for [updates](https://api.highcharts.com/class-reference/Highcharts.Chart#update). When `true`, the `series`, `xAxis`, and `yAxis` collections will be updated one to one, and items will be added or removed to match the updated options. For example, if a chart has **two** series, calling `chart.update` with a configuration containing **three** series will add **one**. Similarly, calling `chart.update` with **one** series will remove **one**. Setting an empty series array removes all series, while leaving out the `series` property leaves them untouched. If the series have `id`s, new series options will be matched by `id`, and the remaining ones will be removed. <br><br> This option is demonstrated in [the demo](#demo-app). Try setting new chart options with different numbers of series in the [textarea input](https://github.com/highcharts/highcharts-angular/blob/36e158e684b5823e1b1bd1cedf75548022eba1a9/src/app/app.component.html#L7) to see it in action. | ## Chart instance A chart instance can be obtained using the following methods: - **Component output `chartInstance`** - Emitted after the chart is created (see [demo app](#demo-app) and the `logChartInstance` function). - **Chart's events** - The context of all [chart's events](https://api.highcharts.com/highcharts/chart.events) functions is the chart instance. **Note:** If you are obtaining the chart instance from the **[chart's load event](https://api.highcharts.com/highcharts/chart.events.load)**, and you plan to support exporting, the function will run again when the chart is exported. This is because a separate chart is created for export. To distinguish between the main chart and the export chart, you can check `chart.renderer.forExport`. It will be set to `true` for the export chart and `undefined` for the main chart. # Highcharts Partial Loading on the Component Level A Highcharts instance is optionally initialized with **[modules](#to-load-a-module)**, **[maps](#to-load-a-map-for-Highcharts-Maps)**, **[wrappers](#to-load-a-wrapper)**, and set **[global options](#to-use-setoptions)** using **[`setOptions`](https://www.highcharts.com/docs/getting-started/how-to-set-options#2)**. **The core is required.** **Note:** The Highcharts instance is shared across components in an Angular app, meaning that loaded modules will affect all charts. Since highcharts-angular 5.0.0, you can provide extra modules on demand to your chart at the component level: ## Example ### To load a module A module is a Highcharts official addon - including Highcharts Stock [Technical Indicators](https://www.highcharts.com/docs/stock/technical-indicator-series), style [themes](https://www.highcharts.com/docs/chart-design-and-style/themes), specialized series types (e.g. [Bullet](https://www.highcharts.com/docs/chart-and-series-types/bullet-chart), [Venn](https://www.highcharts.com/docs/chart-and-series-types/venn-series)). After importing Highcharts, Highcharts Stock, or Highcharts Maps, use `providePartialHighcharts` and initialize modules with an array of Highcharts factory functions. If a lack of TypeScript definitions `d.ts` is showing as an error - see [Solving problems](https://www.highcharts.com/docs/advanced-chart-features/highcharts-typescript-declarations) section of Highcharts documentation for TypeScript usage. ```ts import { Component } from '@angular/core'; import { HighchartsChartDirective } from 'highcharts-angular'; @Component({ template: ` <div highchartsChart [options]="chartOptions" class="chart"></div> `, styles: [ ` .chart { width: 100%; height: 400px; display: block; } `, ], imports: [HighchartsChartDirective], providers: [ providePartialHighcharts({ modules: () => { return [ // Load Gantt Chart import('highcharts/esm/modules/gantt'), // Load exporting module import('highcharts/esm/modules/exporting'), ]; }, timeout: 900, // Optional: increase timeout for loading modules }), ], }) export class GanttComponent { chartOptions: Highcharts.Options = { series: [ { data: [1, 2, 3], type: 'line', }, ], }; } ``` ### To load a map for Highcharts Maps Official map collection is published and [here](https://www.npmjs.com/package/@highcharts/map-collection#install-from-npm) are basic instructions for loading a map. A full example can also be found in the [demo app](#demo-app). ```ts import { Component } from '@angular/core'; import { HighchartsChartDirective } from 'highcharts-angular'; @Component({ template: ` <div highchartsChart [options]="chartOptions" class="chart"></div> `, styles: [ ` .chart { width: 100%; height: 400px; display: block; } `, ], imports: [HighchartsChartDirective], providers: [providePartialHighcharts({ modules: () => [import('highcharts/esm/modules/map')] })], }) export class MapComponent { chartOptions: Highcharts.Options = { series: [ { data: [1, 2, 3], type: 'line', }, ], }; } ``` ### To load a stock for Highcharts ```ts import { Component } from '@angular/core'; import { HighchartsChartDirective } from 'highcharts-angular'; @Component({ template: ` <div highchartsChart [options]="chartOptions" class="chart"></div> `, styles: [ ` .chart { width: 100%; height: 400px; display: block; } `, ], imports: [HighchartsChartDirective], providers: [providePartialHighcharts({ modules: () => [import('highcharts/esm/modules/stock')] })], }) export class StockComponent { chartOptions: Highcharts.Options = { series: [ { data: [1, 2, 3], type: 'line', }, ], }; } ``` **Note:** - Some Highcharts modules have dependencies and must be loaded in a specific order. - In such cases, use a promise chain (e.g., `import('highcharts/esm/highcharts-more').then(() => import('highcharts/esm/modules/dumbbell'))`) - instead of just listing them as array items. This ensures the dependent module loads only after its dependency. ### To load a wrapper A wrapper is a [custom extension](https://www.highcharts.com/docs/extending-highcharts/extending-highcharts) for Highcharts. To load a wrapper in the same way as a module, save it as a JavaScript file and add the following code to the beginning and end of the file: ```js (function (factory) { if (typeof module === 'object' && module.exports) { module.exports = factory; } else { factory(Highcharts); } }(function (Highcharts) { ... /* wrapper code */ ... })); ``` Next, you will be loading a local `.js` file, so add `allowJs: true` to the `tsconfig.json` in your app: ```json { "compilerOptions": { "allowJs": true } } ``` The wrapper is now ready to be imported into your app. Use `require` instead of `import` to prevent TS5055 errors: ```ts import { Component } from '@angular/core'; import { HighchartsChartDirective } from 'highcharts-angular'; @Component({ template: ` <div highchartsChart [options]="chartOptions" class="chart"></div> `, styles: [ ` .chart { width: 100%; height: 400px; display: block; } `, ], imports: [HighchartsChartDirective], providers: [ providePartialHighcharts({ modules: () => [import('./relative-path-to-the-wrapper-file/wrapper-file-name')] }), ], }) export class StockComponent { chartOptions: Highcharts.Options = { series: [ { data: [1, 2, 3], type: 'line', }, ], }; } ``` Where `relative-path-to-the-wrapper-file` is the relative path (from the module importing the wrapper) to the wrapper file, and `wrapper-file-name` is the name of the wrapper file. If TypeScript definitions (`d.ts`) are missing and causing errors, see the [Solving problems](https://www.highcharts.com/docs/advanced-chart-features/highcharts-typescript-declarations) section of the Highcharts documentation for TypeScript usage. ## Demo app Download (or clone) the contents of the **[highcharts-angular](https://github.com/highcharts/highcharts-angular)** GitHub repository. The demo app does not rely on external dependencies but instead builds the `highcharts-angular` package, so it's necessary to run `npm start` to generate this package. In your system console, in the main repo folder, run: ```cli npm install ``` 1. Start Default: ```cli npm start ``` 2. Start with SSR: ```cli npm start:ssr ``` The command `npm start` will launch the default app, while `npm start:ssr` will start the server-side rendering (SSR) version. Both versions can be accessed at [http://localhost:4200/](http://localhost:4200/) in your default browser. To open the app on a different port (e.g., `12345`), use: ```cli npm start -- --port 12345 ``` ### Play with the app Keep the console running, and modify files — after saving, the app will automatically rebuild and refresh in the localhost preview. ### Files to play with - **app.component.ts** (located in `src\app`) This file contains the main Angular component, which utilizes different components like _line-chart_, _gantt-chart_, _map-chart_, and _stock-chart_. ## Release Using Angular CLI v19, the library must be manually rebuilt on each change in order to reflect in the demo app. Run the following command on each change to the `highcharts-chart.directive.ts` file: ```cli npm run build ``` If you are running the demo app in another terminal window when you rebuild the library, the changes should be reflected in your browser (note: you may need to refresh the browser a second time after the live reload in order to see the change). For CHANGELOG.md update use : ```cli npm run release ``` ## Help and FAQ For technical support please contact [Highcharts technical support](https://www.highcharts.com/support). For TypeScript problems with Highcharts first see [Highcharts documentation for TypeScript usage](https://www.highcharts.com/docs/advanced-chart-features/highcharts-typescript-declarations). ### FAQ: #### How to add and use indicators? Add [indicators](https://www.highcharts.com/docs/chart-and-series-types/technical-indicator-series) as any other module. #### How to add and use themes? Add [themes](https://www.highcharts.com/docs/chart-design-and-style/themes) as any other module. See the [demo app](#demo-app) in this repository for an example. More info about custom themes in [Highcharts general documentation](https://www.highcharts.com/docs/chart-design-and-style/custom-themes-in-styled-mode). #### I have a general issue with Highcharts and TypeScript The correct repository to report such issues is [main Highcharts repository](https://github.com/highcharts/highcharts/issues). #### Property `XXX` does not exist on type `YYY` It is happening when you are trying to use non-existing property or one of our internal properties that are not publicly available for example `axis.dataMin`. To fix that you need to create your own type that will extend the default Highcharts one with the new properties. Then all you need to do is to cast the selected option / to the extended type. #### How to use Highcharts Maps with the proj4? Install the `proj4` library and its types `@types/proj4`. Then pass it to `chartOptions.chart.proj4` property. See the [demo app](#demo-app) in this repository. #### I want to render angular component in the tooltip/axis formatter To render angular component within the chart you can use the angular [portals](https://material.angular.io/cdk/portal/overview).