VTable icon indicating copy to clipboard operation
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.

Results 455 VTable issues
Sort by recently updated
recently updated
newest added

### What problem does this feature solve? 场景:行维度:大区-地区,列维度:月份,指标:销量、金额、去年销量(隐藏指标)、去年金额(隐藏指标) 销量同比(派生指标)、金额同比(派生指标) 我隐藏的指标不想在页面上看到,但是隐藏的指标又需要参与派生的指标计算 ### What does the proposed API look like? https://applink.feishu.cn/client/message/link/open?token=AmU%2FQqHXB0ADZgpll9ASAAQ%3D

High Priority

### What problem does this feature solve? 填充柄可以支持单列配置吗? ### What does the proposed API look like? 填充柄可以支持单列配置吗?

### What problem does this feature solve? 目前看如果有锁定的列,可拖拽的列可以拖拽到锁定列的前面,导致表格异常 https://github.com/VisActor/VTable/assets/16183057/0b5d528b-fcb3-412f-bfdd-82f2ce14ba94 ### What does the proposed API look like? dragRange?: { start?: number; end?: number; }

### What problem does this feature solve? 希望change_cell_value 可以同时返回修改之前的值, 现在在单元格修改之后做数据校验时,失败的时候没有办法将单元格还原为修改之前的值, 目前参数中rawValue是数据源最原始值 ### What does the proposed API look like? change_cell_value 增加返回单元格修改之前的值

![Image](https://github.com/VisActor/VTable/assets/49136199/f8980cc1-36f7-4412-9821-7c9351171b6e)

bug
bp

### Version 0.22.3 ### Link to Minimal Reproduction https://visactor.io/vtable/guide/cell_type/checkbox ### Steps to Reproduce https://visactor.io/vtable/guide/cell_type/checkbox ### Current Behavior ListTable表格中CheckBox复选框在移动端中无法点击选中 ### Expected Behavior ListTable表格中CheckBox复选框在移动端中无法点击选中 ### Environment ```markdown - OS: - Browser: -...

bug

### What problem does this feature solve? filter any data ### What does the proposed API look like? export interface FilterRule { filterKey?: string; filteredValues?: unknown[]; filterFunc?: (row: Record) =>...

### Version 0.19.0~0.22.0 ### Link to Minimal Reproduction https://visactor.io/vtable/demo/performance/async-data ### Steps to Reproduce 1. 删除某行数据, 2. 等待table重新渲染; 3. console 中出现 爆栈问题; 大概定位了下, 是因为 listtable在删除数据后,没有更新proxy->highPerformanceGetCell 中cellGroup中的行号; 导致 ![image](https://github.com/VisActor/VTable/assets/1592277/6870ec6c-c4c9-4aed-8b75-11d46df88d08) ### Current Behavior...

bug

### What problem does this feature solve? 数据报表时常见角头会有多维度标记说明,如图 ![image](https://github.com/VisActor/VTable/assets/67748948/9e21e471-166f-4fb2-ba73-8d5cc58507aa) ### What does the proposed API look like? corner中可以customLayout

### What problem does this feature solve? option can support array type; text can set which cell's Value; ``` customMergeCell: [ { text: '总结栏:此数据为一份人员基本信息', or {col:0,row: table.rowCount-1} range: { start:...