Skip to content

Commit 4831134

Browse files
feat: updated products names
1 parent f28ff3e commit 4831134

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

README.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ Official minimal Highcharts wrapper for Angular
1313
1. [Core](#core)
1414
2. [To load a module](#to-load-a-module)
1515
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)
1717
5. [To load a wrapper](#to-load-a-wrapper)
1818
6. [To use setOptions](#to-use-setoptions)
1919
5. [Demo app](#demo-app)
@@ -189,15 +189,15 @@ _Notice:_ The Highcharts instance is shared through components in an Angular app
189189
190190
### Core
191191
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+).
193193
194194
* For **Highcharts**:
195195
196196
```ts
197197
import * as Highcharts from 'highcharts';
198198
```
199199
200-
* For **Highstock**:
200+
* For **Highcharts Stock**:
201201
202202
```ts
203203
import * as Highcharts from 'highcharts/highstock';
@@ -209,7 +209,7 @@ import HC_stock from 'highcharts/modules/stock';
209209
HC_stock(Highcharts);
210210
```
211211
212-
* For **Highmaps**:
212+
* For **Highcharts Maps**:
213213
214214
```ts
215215
import * as Highcharts from 'highcharts/highmaps';
@@ -235,7 +235,7 @@ HC_gantt(Highcharts);
235235
236236
### To load a module
237237
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.
239239
240240
```ts
241241
import * as Highcharts from 'highcharts';
@@ -264,7 +264,7 @@ If a plugin doesn't support loading through NPM you could treat it as a wrapper
264264
265265
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.
266266
267-
### To load a map for Highmaps
267+
### To load a map for Highcharts Maps
268268
269269
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.
270270
An example can also be found in the [demo app](#demo-app).

0 commit comments

Comments
 (0)