Package Exports
- @progress/kendo-charts
- @progress/kendo-charts/dist/es/main.js
- @progress/kendo-charts/dist/npm/main.js
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (@progress/kendo-charts) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
Kendo UI for Angular
This package is part of the Kendo UI for Angular suite.
License
This is commercial software. To use it, you need to agree to the Telerik End User License Agreement for Kendo UI Complete. If you do not own a commercial license, this file shall be governed by the trial license terms.
All available Kendo UI commercial licenses may be obtained at http://www.telerik.com/purchase/kendo-ui.
Development
Running the examples
Inside the repo directory run npm ci && npm start. The demos will be available at http://localhost:3000/.
Linking the kendo-drawing package
Due to the dependency of the package to @progress/kendo-drawing, it's often necessary to make changes to both packages during development. The most convenient way to develop is using npm link. To link the packages do the following:
- Clone the kendo-drawing repo in the same parent directory, where
kendo-chartsis cloned. - Navigate to the
kendo-drawingdirectory and executenpm link. - Build the package using
npm run build-package. - Inside the
kendo-chartsdirectory runnpm i, and thennpm link @progress/kendo-drawing.
Now you should be able to make changes to kendo-drawing and seeing the effects in kendo-charts. After each change in kendo-drawing you should run npm run build-package.