You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: README.md
+6-6Lines changed: 6 additions & 6 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -13,7 +13,7 @@ Official minimal Highcharts wrapper for Angular
13
13
1.[Core](#core)
14
14
2.[To load a module](#to-load-a-module)
15
15
3.[To load a plugin](#to-load-a-plugin)
16
-
4.[To load a map for Highmaps](#to-load-a-map-for-highmaps)
16
+
4.[To load a map for Highcharts Maps](#to-load-a-map-for-Highcharts-Maps)
17
17
5.[To load a wrapper](#to-load-a-wrapper)
18
18
6.[To use setOptions](#to-use-setoptions)
19
19
5.[Demo app](#demo-app)
@@ -189,15 +189,15 @@ _Notice:_ The Highcharts instance is shared through components in an Angular app
189
189
190
190
### Core
191
191
192
-
As core you could load **Highcharts**, **Highstock**, **Highmaps** or **Highcharts Gantt** (v. 6.2.0+).
192
+
As core you could load **Highcharts**, **Highcharts Stock**, **Highcharts Maps** or **Highcharts Gantt** (v. 6.2.0+).
193
193
194
194
* For **Highcharts**:
195
195
196
196
```ts
197
197
import*asHighchartsfrom'highcharts';
198
198
```
199
199
200
-
* For **Highstock**:
200
+
* For **Highcharts Stock**:
201
201
202
202
```ts
203
203
import*asHighchartsfrom'highcharts/highstock';
@@ -209,7 +209,7 @@ import HC_stock from 'highcharts/modules/stock';
209
209
HC_stock(Highcharts);
210
210
```
211
211
212
-
* For **Highmaps**:
212
+
* For **Highcharts Maps**:
213
213
214
214
```ts
215
215
import*asHighchartsfrom'highcharts/highmaps';
@@ -235,7 +235,7 @@ HC_gantt(Highcharts);
235
235
236
236
### To load a module
237
237
238
-
A module is a Highcharts official addon - including Highstock [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 Highcharts is imported using Highcharts, Highstock or Highmaps use `import` and initialize each module on the Highcharts variable.
238
+
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 Highcharts is imported using Highcharts, Highcharts Stock or Highcharts Maps use `import` and initialize each module on the Highcharts variable.
239
239
240
240
```ts
241
241
import*asHighchartsfrom'highcharts';
@@ -264,7 +264,7 @@ If a plugin doesn't support loading through NPM you could treat it as a wrapper
264
264
265
265
If a lack of TypeScirpt definitions `d.ts` is showing as an error - see [Solving problems](https://www.highcharts.com/docs/advanced-chart-features/highcharts-typescript-beta#solving-problems) section of Highcharts documentation for Typescript usage.
266
266
267
-
### To load a map for Highmaps
267
+
### To load a map for Highcharts Maps
268
268
269
269
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.
270
270
An example can also be found in the [demo app](#demo-app).
0 commit comments