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
@@ -79,46 +79,43 @@ In [demos](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos)
79
79
[SystemJS](https://github.com/systemjs/systemjs) loader is used for
80
80
dynamic modules loading.
81
81
82
-
1) Despite the AnyChart-Angular2 integration is available with package managers,
83
-
the license allows to modify and use it freely. This quick start guide
84
-
clarifies the structure of integration project and explains how it works and
85
-
can be used.
86
-
87
-
Since the integration is cloned from GitHub and Node Package Manager
88
-
(`npm` command) is available in command line, the following command compiles
89
-
source code to **dist/** directory:
90
-
```sh
91
-
npm run build
92
-
```
82
+
1) Despite the AnyChart-Angular2 integration is available with package managers, the license allows to modify and use it freely (though you [need AnyChart license to use the library](http://anychart.com/buy) itself in commercial projects). This quick start guide clarifies the structure of integration project and explains how it works and how it can be used.
83
+
84
+
If the integration is cloned from GitHub and Node Package Manager (`npm` command) is available in command line, the following command compiles source code to **dist/** directory:
85
+
86
+
```sh
87
+
npm run build
88
+
```
93
89
94
90
2) If needed, `package.json` of demo-application can be configured to declare custom run-commands
95
-
and to add required dependencies excepting already included.
91
+
and to add required dependencies.
96
92
97
93
3) Run `npm install` command to load all required npm modules.
98
94
99
95
4) Configure `systemjs.config.js` to declare the mapping of dependencies of
100
96
application (see any [demo](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos)
101
-
to realise the basic configuration). In 'map'-section this integration library is declared
97
+
to see the basic configuration). In 'map'-section AnyChart integration library is declared:
Package manager configuration file. Also contains descriptions of
163
-
available run commands (including build command) and list of dependencies.
164
-
159
+
available run commands (including build command) and the list of dependencies.
165
160
166
161
## Demos overview
167
162
See these samples to learn how things work:
168
-
***[Load_Data_From_Json](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Load_Data_From_Json)**: Demo of async data loading. Also
169
-
shows how AnychartService can be used. **Please, note:**This demo can launched only from a web-server, in browser window, because of cross origin requests security issues.
170
-
***[Gantt_Project_After_Draw](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Gantt_Project_After_Draw)**: Shows how to create Gantt Project
163
+
***[Load Data From JSON](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Load_Data_From_Json)**: Async data loading sample. Also
164
+
shows how AnychartService can be used. **Note:**this demo can be launched only from a web-server, in browser window, because of cross origin requests security issues.
165
+
***[Gantt Project After Draw](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Gantt_Project_After_Draw)**: Shows how to create a Gantt Project
171
166
Chart and add the after-draw handler.
172
-
***[Gantt_Resource_Instance_Usage](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Gantt_Resource_Instance_Usage)**: Shows how to use manually created
167
+
***[Gantt Resource with Instance](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Gantt_Resource_Instance_Usage)**: Shows how to use manually created
173
168
instance of a Gantt Resource chart and how to add the after-draw handler.
174
-
***[Line_Chart_After_Draw](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Line_Chart_After_Draw)**: Demonstrates how to create and use instance
169
+
***[Line Chart After Draw](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Line_Chart_After_Draw)**: Shows how to create and use instance
***[Simple_Charts_On_Stage](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Simple_Charts_On_Stage)**: Demonstrates how to create and add simple
171
+
***[Line Chart Data Streaming](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Line_Chart_Data_Streaming)**: Simple datastreaming demo.
172
+
***[Simple Charts On Stage](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Simple_Charts_On_Stage)**: Shows how to create and add simple
178
173
charts on the anychart stage and how to add the after-draw handler.
***[Software_Sales_Dashboard](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Software_Sales_Dashboard)**: Demonstrates how to use `anychart-stage`
184
-
directive to build the interactive dashboard.
178
+
***[Software_Sales_Dashboard](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Software_Sales_Dashboard)**: Shows how to use `anychart-stage`
179
+
directive to build an interactive dashboard.
185
180
***[World_Map_Instance_After_Draw](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/World_Map_Instance_After_Draw)**: World map demo. Shows how to
186
181
use map chart instance and how to add the after-draw handler.
0 commit comments