sea-chart 0.0.78-alpha.0 → 0.0.79

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -241,13 +241,13 @@ async function calculateTwoDimensionTable(chart, value, _ref2) {
241
241
  const formulaRows = await getTableFormulaResults(table, statRows);
242
242
  const pivot_summary_multiple_columns = [];
243
243
  Array.isArray(summary_columns) && summary_columns.forEach(item => {
244
- const column = getTableColumnByKey(table, item.key);
244
+ const column = getTableColumnByKey(table, item.column_key);
245
245
  if (column && isNumericColumn(column)) {
246
246
  pivot_summary_multiple_columns.push({
247
- key: item.key,
247
+ key: item.column_key,
248
248
  type: column.type,
249
249
  data: column.data,
250
- method: item.method,
250
+ method: item.summary_method,
251
251
  column_name: column.name
252
252
  });
253
253
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "sea-chart",
3
- "version": "0.0.78-alpha.0",
3
+ "version": "0.0.79",
4
4
  "main": "./dist/index.js",
5
5
  "dependencies": {
6
6
  "@antv/data-set": "0.11.8",