Luckysheet icon indicating copy to clipboard operation
Luckysheet copied to clipboard

Luckysheet is an online spreadsheet like excel that is powerful, simple to configure, and completely open source.

Results 230 Luckysheet issues
Sort by recently updated
recently updated
newest added

**描述问题** 在配置中加入鼠标钩子sheetMouseMove,当鼠标正有拖动元素拂过sheet时,该函数不会被触发 **重现问题** 1. The first step:创建任意一个可拖动元素元素: `` 3. The second step:拖动该元素拂过创建好的luckysheet表格 4. See error:鼠标钩子sheetMouseMove不会触发 **期望的功能** 拖动元素拂过时,鼠标经过位置单元格高亮

**Describe the bug** When luckysheet's div is in flex not on the left, then the toolbar is not displayed properly. **To Reproduce** Put two child divs in parent div. Set...

暂时没找到复现场景. 但是定位到的问题是`Uncaught TypeError: Cannot read properties of undefined (reading 'substr') ` 经过分析. 发现表格数据中存储的公式链变成这样,"calcChain":[{"r":18,"c":3,"index":"94e52947-a130-4f52-ac27-5f5e615e0575"}]. 少了v的值. 暂时无法复现导致这样的原因

**您的功能请求与问题有关吗?** **描述您想要的解决方案** **其他内容**

**Describe the bug** uploadImage配置好了,无法生效,不知道是不是版本的问题,或者这个PR未发布。 我的版本 "luckysheet": "^2.1.13" ```javascript const config = { uploadImage: function (file) { console.log('file: ', file); return new Promise(function (resolve, reject) { resolve('https://imgs') }); }, imageUrlHandle: str...

**Describe the bug** 右击插入列存在问题 **To Reproduce** 1. The first step: 在项目提供的Demo的Sheet:Formula中的B7单元格中右击,选择邮件菜单中的“插入列” 4. See error:插入列之前的C7,C8,C9中原有的文本,应该正常的移动到D7,D8,D9的单元格内,但是D7,D8,D9中显示的结果并不是插入列之前的C7,C8,C9中原有的文本 **What is expected?** 预期D7,D8,D9中正常显示: D7显示:Average Age: D8显示:Max Age: D9显示:Min Age: 实际D7,D8,D9中显示的内容如下: D7显示:23.75 D8显示:30 D9显示:17 **Screenshots or...

**Is your feature request related to a problem? Please describe.** Different ways to sync spreadsheet data in Luckysheet. **Describe the solution you'd like** 1. One of my problems is having...

**您的功能请求与问题有关吗?** ![image](https://user-images.githubusercontent.com/4961592/187348279-c0ef1ffe-4350-4964-87c5-d5100da4d440.png) **描述您想要的解决方案** **其他内容**

https://github.com/mengshukeji/Luckysheet/blob/3527d280e12140d1ab4d634c4aa62b2fb7ab9a42/src/expendPlugins/chart/plugin.js#L48 在lucksheet的config中配置中文lang=zh, ./src/store/index.js 中的lang也会被设置为zh, ./src/expendPlugins/chart/plugin.js中的chartInfo,引用的也是这个./src/store/index.js文件; 进行chart 设置的时候,chartInfo.lang得到是zh, 但是在chartMix中,进行中文设置是'ch',造成了不匹配, ```js if (this.lang == "ch") { this.setItem = transCN["chartSetting"]; return; } this.setItem = transEN["chartSetting"]; console.dir(this.setItem); ``` 导致chart设置的lang默认就是en(英文); ![image](https://user-images.githubusercontent.com/28525915/187150089-89178f63-138e-49ac-b2cc-6a9f339583fc.png)