@visactor/vseed 0.0.25 → 0.0.26

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.
package/dist/index.js CHANGED
@@ -2221,7 +2221,7 @@ const initBarParallel = (spec, context)=>{
2221
2221
  result.direction = 'horizontal';
2222
2222
  result.yField = [
2223
2223
  encoding[0].y[0],
2224
- unfoldInfo.groupName
2224
+ unfoldInfo.groupId
2225
2225
  ];
2226
2226
  result.xField = encoding[0].x[0];
2227
2227
  result.seriesField = encoding[0].group[0];
@@ -2370,7 +2370,7 @@ const initColumnParallel = (spec, context)=>{
2370
2370
  result.direction = 'vertical';
2371
2371
  result.xField = [
2372
2372
  encoding[0].x[0],
2373
- unfoldInfo.groupName
2373
+ unfoldInfo.groupId
2374
2374
  ];
2375
2375
  result.yField = encoding[0].y[0];
2376
2376
  result.seriesField = encoding[0].group[0];
@@ -2501,7 +2501,7 @@ const initRoseParallel = (spec, context)=>{
2501
2501
  result.type = 'rose';
2502
2502
  result.categoryField = [
2503
2503
  encoding[0].angle[0],
2504
- unfoldInfo.groupName
2504
+ unfoldInfo.groupId
2505
2505
  ];
2506
2506
  result.valueField = encoding[0].radius[0];
2507
2507
  result.seriesField = encoding[0].group[0];