update docify + add libplotly

This commit is contained in:
lxsang
2021-11-21 13:32:22 +01:00
parent e863fef93d
commit 5022dc189f
20 changed files with 322 additions and 5 deletions

5
libplotly/README.md Normal file
View File

@ -0,0 +1,5 @@
# libplotly
Built on top of d3.js and stack.gl, Plotly.js is a high-level, declarative charting library. plotly.js ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps.
plotly.js is free and open source and you can view the source, [report issues or contribute on GitHub](https://github.com/plotly/plotly.js).
This package is the AntOS wrapper of Plotly used as library for AntOS applications

45
libplotly/build.json Normal file
View File

@ -0,0 +1,45 @@
{
"name": "libplotly",
"targets":{
"clean": {
"jobs": [
{
"name": "vfs-rm",
"data": ["build/debug","build/release"]
}
]
},
"copy": {
"jobs": [
{
"name": "vfs-mkdir",
"data": ["build", "build/debug", "build/release"]
},
{
"name": "vfs-cp",
"data": {
"src": [
"main.js",
"package.json",
"README.md"
],
"dest":"build/debug"
}
}
]
},
"release": {
"depend": ["clean","copy"],
"require": ["zip"],
"jobs": [
{
"name": "zip-mk",
"data": {
"src":"build/debug",
"dest":"build/release/libplotly.zip"
}
}
]
}
}
}

View File

@ -0,0 +1,5 @@
# libplotly
Built on top of d3.js and stack.gl, Plotly.js is a high-level, declarative charting library. plotly.js ships with over 40 chart types, including 3D charts, statistical graphs, and SVG maps.
plotly.js is free and open source and you can view the source, [report issues or contribute on GitHub](https://github.com/plotly/plotly.js).
This package is the AntOS wrapper of Plotly used as library for AntOS applications

File diff suppressed because one or more lines are too long

View File

@ -0,0 +1,15 @@
{
"pkgname": "libplotly",
"name":"Plotly",
"description":"Plotly: Javascript data visualization library",
"info":{
"author": "Dany LE",
"email": "mrsang@iohub.dev"
},
"version":"2.6.2-r",
"category":"Library",
"iconclass":"fa fa-cog",
"mimes":["none"],
"dependencies":[],
"locale": {}
}

Binary file not shown.

65
libplotly/main.js Normal file

File diff suppressed because one or more lines are too long

15
libplotly/package.json Normal file
View File

@ -0,0 +1,15 @@
{
"pkgname": "libplotly",
"name":"Plotly",
"description":"Plotly: Javascript data visualization library",
"info":{
"author": "Dany LE",
"email": "mrsang@iohub.dev"
},
"version":"2.6.2-r",
"category":"Library",
"iconclass":"fa fa-cog",
"mimes":["none"],
"dependencies":[],
"locale": {}
}