bubble-chart-js 1.0.0 → 1.0.2
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/README.md +1 -1
- package/package.json +21 -2
package/README.md
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
# bubbleChartJs
|
|
2
2
|
|
|
3
|
-
bubbleChartJs is a lightweight
|
|
3
|
+
bubbleChartJs is a lightweight and customizable JavaScript library for creating stacked bubble charts, arranging bubbles by size with the largest at the top.
|
|
4
4
|
|
|
5
5
|
### ✨ Why Use a Stacked Bubble Chart?
|
|
6
6
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "bubble-chart-js",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.2",
|
|
4
4
|
"description": "bubbleChartJs is a lightweight, customizable JavaScript library for creating stacked bubble charts. It arranges bubbles based on their values, with the largest bubble positioned at the top and surrounding bubbles decreasing in size accordingly.",
|
|
5
5
|
"main": "dist/index.js",
|
|
6
6
|
"types": "dist/index.d.ts",
|
|
@@ -31,5 +31,24 @@
|
|
|
31
31
|
"webpack-dev-server": "^4.15.1"
|
|
32
32
|
},
|
|
33
33
|
"author": "Pragadeeshwaran Pasupathi <pragadeeshwaran.pasupathi@gmail.com>",
|
|
34
|
-
"
|
|
34
|
+
"repository": {
|
|
35
|
+
"type": "git",
|
|
36
|
+
"url": "https://github.com/Praga-Dev/bubbleChartJS.git"
|
|
37
|
+
},
|
|
38
|
+
"license": "MIT",
|
|
39
|
+
"keywords": [
|
|
40
|
+
"bubble chart",
|
|
41
|
+
"chartjs",
|
|
42
|
+
"chart.js",
|
|
43
|
+
"visualization",
|
|
44
|
+
"data visualization",
|
|
45
|
+
"bubble graph",
|
|
46
|
+
"canvas chart",
|
|
47
|
+
"charts",
|
|
48
|
+
"graph",
|
|
49
|
+
"chart library",
|
|
50
|
+
"chart plugin",
|
|
51
|
+
"data plotting",
|
|
52
|
+
"bubble chartjs"
|
|
53
|
+
]
|
|
35
54
|
}
|