@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.cjs +3 -3
- package/dist/index.cjs.map +1 -1
- package/dist/index.js +3 -3
- package/dist/index.js.map +1 -1
- package/dist/umd/index.js +3 -3
- package/dist/umd/index.js.map +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
@@ -2449,7 +2449,7 @@ const initBarParallel = (spec, context)=>{
|
|
2449
2449
|
result.direction = 'horizontal';
|
2450
2450
|
result.yField = [
|
2451
2451
|
encoding[0].y[0],
|
2452
|
-
unfoldInfo.
|
2452
|
+
unfoldInfo.groupId
|
2453
2453
|
];
|
2454
2454
|
result.xField = encoding[0].x[0];
|
2455
2455
|
result.seriesField = encoding[0].group[0];
|
@@ -2598,7 +2598,7 @@ const initColumnParallel = (spec, context)=>{
|
|
2598
2598
|
result.direction = 'vertical';
|
2599
2599
|
result.xField = [
|
2600
2600
|
encoding[0].x[0],
|
2601
|
-
unfoldInfo.
|
2601
|
+
unfoldInfo.groupId
|
2602
2602
|
];
|
2603
2603
|
result.yField = encoding[0].y[0];
|
2604
2604
|
result.seriesField = encoding[0].group[0];
|
@@ -2729,7 +2729,7 @@ const initRoseParallel = (spec, context)=>{
|
|
2729
2729
|
result.type = 'rose';
|
2730
2730
|
result.categoryField = [
|
2731
2731
|
encoding[0].angle[0],
|
2732
|
-
unfoldInfo.
|
2732
|
+
unfoldInfo.groupId
|
2733
2733
|
];
|
2734
2734
|
result.valueField = encoding[0].radius[0];
|
2735
2735
|
result.seriesField = encoding[0].group[0];
|