内容简介:English|Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source.
Luckysheet
English| 简体中文
Introduction
Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source.
Features
- Support table settings including freezing columns, merging cells, filtering, sorting, querying, conditional formatting, and annotations
- Support data analysis functions including pivottables, charts, columns, matrix operations, built-in 385 calculation functions
- Support one-click screenshots, data copying as json,shared editing, and free data copying and pasting between excel and luckysheet
- Support mobile viewing
- Support sparkLine
- Drop down copy
- Keyboard shortcuts
Plan
- Improve chart plugin
- Insert picture
- Data validation (checkbox, drop-down list)
- Cell segmentation style
- Tree menu
- Table function: filter, slice
- Excel import/export
- More...
Documentation
Requirements
Node.js Version >= 6
Installation
npm install npm install gulp -g
Development
Development
npm run dev
Package
npm run build
Read
The core code of Luckysheet is luckysheet-core.js and luckysheet-function.js, developers only need to look at these two files to see the source code, and then we will discuss the modularization scheme and improve this library.
Usage
First step
Copy all files in the dist folder after npm run build to the project directory
Second step
Introduce dependencies
<link rel='stylesheet' href='./plugins/css/pluginsCss.css' /> <link rel='stylesheet' href='./plugins/plugins.css' /> <link rel='stylesheet' href='./css/luckysheet.css' /> <script src="./plugins/js/plugin.js"></script> <script src="./luckysheet.umd.js"></script>
Third step
Specify a table container
<div id="luckysheet"></div>
Fourth step
Create a table
<script>
$(function () {
//Configuration item
var options = {
container: 'luckysheet' //luckysheet is the container id
}
luckysheet.create(options)
})
</script>
Contact
communication
Authors and acknowledgment
License
Copyright (c) 2020-present, mengshukeji
以上所述就是小编给大家介绍的《Luckysheet, an open source spreadsheet like Excel》,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对 码农网 的支持!
猜你喜欢:本站部分资源来源于网络,本站转载出于传递更多信息之目的,版权归原作者或者来源机构所有,如转载稿涉及版权问题,请联系我们。
Java Script深度剖析
卢云鹏、沈维伦、Don Gosselin、李筱青 / 卢云鹏、沈维伦、李筱青 / 北京大学出版社 / 2004-10-1 / 49.0
本书适合于大中专院计算机相关专业作为教材,也是JavaScript初学者以及JavaScript爱好者的理想参考用书。书中详细介绍了基本的JavaScript程序设计原理以及实现它们的语法,内容包括JavaScript简介,变理、函数、对角和事件,数据类型、运算符,结构化逻辑控制结构和语句,窗口和框架,表单,动态HTML和动画,cookie和安全性,服务器端 JavaScript,数据库连接,使用......一起来看看 《Java Script深度剖析》 这本书的介绍吧!