v1.7.0
2024-08-30
🆕 New feature
- @visactor/vtable-gantt: add gantt chart
v1.0.0
2024-05-21
💥 Breaking change
- @visactor/vtable: If the user has previously passed in rowTree and columnTree for the pivot table, under this usage, the result returned by the getCellOriginRecord interface changes from the previous object to an array structure, and if no default aggregation was previously performed, the SUM aggregation rule will be used for data calculation. If you want to cancel the numerical calculation rule, you can specify the aggregation rule as NONE for the indicator.
Configuration examples, you can also refer to Tutorial:
records:[{
region: '中南',
province: '广西',
year: '2016',
quarter: '2016-Q1',
sales: 'NULL',
profit: 1546
}],
dataConfig:{
aggregationRules: [
{
indicatorKey: 'sales',
field: 'sales',
aggregationType: VTable.TYPES.AggregationType.NONE,
}
]
}
🆕 New feature