VTable
VTable copied to clipboard
VTable is not just a high-performance multidimensional data analysis table, but also a grid artist that creates art between rows and columns.
### What problem does this feature solve? 甘特图自带的tooltip定制功能相对比较弱,所以自己实现了一个,但是实现后发现没有地方关闭默认的tooltip,如下图  ### What does the proposed API look like? taskBar.tooltip
是否有相关事件可以设置?感谢
### Version 1.17.3 ### Link to Minimal Reproduction https://visactor.io/vtable/demo/gantt/gantt-dependency-link-create ### Steps to Reproduce ganttInstance.on('contextmenu_dependency_link', (args) => { console.log('触发',args.link) ganttInstance.deleteLink(args.link) }) ### Current Behavior ganttInstance.on('contextmenu_dependency_link', (args) => { console.log('触发',args.link) ganttInstance.deleteLink(args.link) })...
### What problem does this feature solve? 右键菜单 contextMenuItems 可以进行自定义,但有些情况下,我们需要显示全部菜单,达到告知用户有此菜单项,但触发条件不满足点击菜单。所以希望通过 disabled 禁用某一菜单。 ### What does the proposed API look like? ``` type MenuListItem = | string | { text?: string;...
After updating to React 19, I get the following error: "Cannot read properties of undefined (reading 'ReactCurrentOwner')." The thing is, starting with React 19, reactSharedInternals has been made more internal...
### Version 1.16.0+ ### Link to Minimal Reproduction 详细见复现步骤 ### Steps to Reproduce 使用1.16.0版本后,taskbar宽度正确,但是横向滚动条无法拖动,并且时间刻度渲染有问题  切换时间刻度:季度  这是复现环境的源码: ### Current Behavior 详细见复现步骤 ### Expected Behavior 更改时间刻度为quarter后,taskbar长度显示正确,并且滚动条、时间刻度渲染不受影响 ### Environment ```markdown -...
### Version 1.17.4 ### Link to Minimal Reproduction https://visactor.io/vtable/demo-vue/edit-data/edit-cell ### Steps to Reproduce ## 正常表格示例下没有这个问题,vue示例下存在该问题 1.打开官网vue示例中edit-cell示例 2.将任意一列宽度先拉宽 3.修改表格中的内容回车或者确认后原本拉宽的内容回到了原来的宽度 ### Current Behavior 在vue示例下拖拽表格列宽度后,通过edit-cell修改表格内容后,宽度被重置 ### Expected Behavior 保持我手动拖拽的宽度 ### Environment ```markdown -...
### What problem does this feature solve? 希望能再合并单元格中再渲染一个表格实例,用于主子表的场景,比如:  ### What does the proposed API look like? 增加 customRender的 Table Element类型
### What problem does this feature solve? 在excel中复制多行内容到表格中的最后一行粘贴,应该自动新增行 ### What does the proposed API look like? 在excel中复制多行内容到表格中的最后一行粘贴,没有自动新增行
### Version 1.17.3 ### Link to Minimal Reproduction https://codesandbox.io/p/sandbox/vtable-gantt-create-pqdtnh ### Steps to Reproduce https://visactor.io/vtable/demo/gantt/gantt-interaction-creation-button?version=1.17.3 1.代码来源官网示例未做更改,仅在create_task_schedule事件中打印了当前ganttInstance.records 2.点击第二行甘特图区域创建排期按钮 ### Current Behavior 第6行数据(也即创建排期数据的一级父级的下一个兄弟一级数据),被错误赋值为创建排期的那条数据,children参数也会被错误赋值,create_task_schedule事件中打印了当前ganttInstance.records显示错误来源可能是数据赋值错误 ### Expected Behavior 其他行的正常数据不应被影响 ### Environment ```markdown - OS: Windows11...