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
[SystemJS](https://github.com/systemjs/systemjs) loader is used for
90
-
dynamic modules loading.
91
-
Despite the AnyChart-Angular2 integration is available with package managers,
92
-
the license allows to modify and use it freely. This quick start guide
93
-
clarifies the structure of integration project and explains how it works and
94
-
can be used.
88
+
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.
89
+
90
+
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:
91
+
92
+
```sh
93
+
npm run build
94
+
```
95
95
96
-
2) If needed, `package.json` of [demo](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos)-application
97
-
can be configured to declare custom run-commands and to add required
98
-
dependencies excepting already included.
96
+
2) If needed, `package.json` of demo-application can be configured to declare custom run-commands
97
+
and to add required dependencies excepting already included.
99
98
100
99
3) Run `npm install` command to load all required npm modules.
101
100
102
101
4) Configure `systemjs.config.js` to declare the mapping of dependencies of
103
102
application (see any [demo](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos)
104
-
to realise the basic configuration). In 'map'-section this integration library is declared
103
+
to see the basic configuration). In 'map'-section AnyChart integration library is declared:
Package manager configuration file. Also contains descriptions of
173
-
available run commands (including build command) and list of dependencies.
174
-
166
+
available run commands (including build command) and the list of dependencies.
175
167
176
168
## Demos overview
177
169
See these samples to learn how things work:
178
-
***[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
179
-
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.
180
-
***[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
170
+
***[Load Data From JSON](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Load_Data_From_Json)**: Async data loading sample. Also
171
+
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.
172
+
***[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
181
173
Chart and add the after-draw handler.
182
-
***[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
174
+
***[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
183
175
instance of a Gantt Resource chart and how to add the after-draw handler.
184
-
***[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
176
+
***[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
178
+
***[Line Chart Data Streaming](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Line_Chart_Data_Streaming)**: Simple datastreaming demo.
179
+
***[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
188
180
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`
194
-
directive to build the interactive dashboard.
195
-
***[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
***[Software Sales Dashboard](https://github.com/AnyChart/AnyChart-AngularJS-2.x/tree/master/demos/Software_Sales_Dashboard)**: Shows how to use `anychart-stage`
186
+
directive to build an interactive dashboard.
187
+
***[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
196
188
use map chart instance and how to add the after-draw handler.
0 commit comments