@canvasjs/stockcharts 1.7.5 → 1.7.6
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/{license.txt → LICENSE} +2 -2
- package/README.md +5 -3
- package/canvasjs.stock.min.js +1152 -1153
- package/package.json +19 -19
package/{license.txt → LICENSE}
RENAMED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
CanvasJS HTML5 & JavaScript StockCharts - v1.7.
|
|
1
|
+
CanvasJS HTML5 & JavaScript StockCharts - v1.7.6 GA - https://canvasjs.com/
|
|
2
2
|
Copyright 2023 fenopix
|
|
3
3
|
|
|
4
4
|
|
|
5
|
-
|
|
5
|
+
--------------------- License Information --------------------
|
|
6
6
|
CanvasJS is a commercial product which requires purchase of license. Without a commercial license you can use it for evaluation purposes for upto 30 days. Please refer to the following link for further details.
|
|
7
7
|
https://canvasjs.com/license/
|
|
8
8
|
|
package/README.md
CHANGED
|
@@ -1,5 +1,7 @@
|
|
|
1
1
|
<div align="center">
|
|
2
|
-
<
|
|
2
|
+
<a href="https://www.npmjs.com/~canvasjs" target="_blank">
|
|
3
|
+
<img src="https://canvasjs.com/wp-content/uploads/images/logo/canvasjs-logo-240x100.png" alt="CanvasJS"/>
|
|
4
|
+
</a>
|
|
3
5
|
</div>
|
|
4
6
|
|
|
5
7
|
# CanvasJS JavaScript StockCharts
|
|
@@ -45,8 +47,8 @@ You can download the JavaScript stockchart library along with examples from our
|
|
|
45
47
|
Once you have installed the package, you can start using CanvasJS StockCharts in your project. CanvasJS StockCharts can be imported using different module formats like AMD, CommonJS, etc.
|
|
46
48
|
```
|
|
47
49
|
//Load CanvasJS StockCharts
|
|
48
|
-
import * as CanvasJS from
|
|
49
|
-
//var CanvasJS = require(
|
|
50
|
+
import * as CanvasJS from "@canvasjs/stockcharts";
|
|
51
|
+
//var CanvasJS = require("@canvasjs/stockcharts");
|
|
50
52
|
```
|
|
51
53
|
|
|
52
54
|
Define container for the stockchart.
|