@visactor/vseed 0.1.49 → 0.1.51

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.
Files changed (192) hide show
  1. package/dist/cjs/index.cjs +3 -3
  2. package/dist/cjs/index.cjs.map +1 -1
  3. package/dist/esm/builder/builder/buildAdvanced.js +1 -1
  4. package/dist/esm/builder/builder/buildAdvanced.js.map +1 -1
  5. package/dist/esm/builder/builder/buildSpec.js +1 -1
  6. package/dist/esm/builder/builder/buildSpec.js.map +1 -1
  7. package/dist/esm/builder/builder/builder.d.ts +483 -1
  8. package/dist/esm/builder/builder/builder.js +5 -1
  9. package/dist/esm/builder/builder/builder.js.map +1 -1
  10. package/dist/esm/dataSelector/selector.d.ts +5 -0
  11. package/dist/esm/dataSelector/selector.js +92 -50
  12. package/dist/esm/dataSelector/selector.js.map +1 -1
  13. package/dist/esm/pipeline/advanced/chart/pipes/config/boxplot.js +2 -1
  14. package/dist/esm/pipeline/advanced/chart/pipes/config/boxplot.js.map +1 -1
  15. package/dist/esm/pipeline/advanced/chart/pipes/config/column.js +2 -1
  16. package/dist/esm/pipeline/advanced/chart/pipes/config/column.js.map +1 -1
  17. package/dist/esm/pipeline/advanced/chart/pipes/config/dualAxis.js +2 -1
  18. package/dist/esm/pipeline/advanced/chart/pipes/config/dualAxis.js.map +1 -1
  19. package/dist/esm/pipeline/advanced/chart/pipes/config/histogram.js +2 -1
  20. package/dist/esm/pipeline/advanced/chart/pipes/config/histogram.js.map +1 -1
  21. package/dist/esm/pipeline/advanced/chart/pipes/config/line.js +2 -1
  22. package/dist/esm/pipeline/advanced/chart/pipes/config/line.js.map +1 -1
  23. package/dist/esm/pipeline/advanced/chart/pipes/config/scatter.js +2 -1
  24. package/dist/esm/pipeline/advanced/chart/pipes/config/scatter.js.map +1 -1
  25. package/dist/esm/pipeline/advanced/chart/pipes/reshape/reshapeWithEncoding.js +1 -1
  26. package/dist/esm/pipeline/advanced/chart/pipes/reshape/reshapeWithEncoding.js.map +1 -1
  27. package/dist/esm/pipeline/spec/chart/pipeline/area.js +3 -2
  28. package/dist/esm/pipeline/spec/chart/pipeline/area.js.map +1 -1
  29. package/dist/esm/pipeline/spec/chart/pipeline/areaPercent.js +3 -2
  30. package/dist/esm/pipeline/spec/chart/pipeline/areaPercent.js.map +1 -1
  31. package/dist/esm/pipeline/spec/chart/pipeline/bar.js +3 -2
  32. package/dist/esm/pipeline/spec/chart/pipeline/bar.js.map +1 -1
  33. package/dist/esm/pipeline/spec/chart/pipeline/barParallel.js +3 -2
  34. package/dist/esm/pipeline/spec/chart/pipeline/barParallel.js.map +1 -1
  35. package/dist/esm/pipeline/spec/chart/pipeline/barPercent.js +3 -2
  36. package/dist/esm/pipeline/spec/chart/pipeline/barPercent.js.map +1 -1
  37. package/dist/esm/pipeline/spec/chart/pipeline/boxplot.js +3 -2
  38. package/dist/esm/pipeline/spec/chart/pipeline/boxplot.js.map +1 -1
  39. package/dist/esm/pipeline/spec/chart/pipeline/column.js +3 -2
  40. package/dist/esm/pipeline/spec/chart/pipeline/column.js.map +1 -1
  41. package/dist/esm/pipeline/spec/chart/pipeline/columnParallel.js +3 -2
  42. package/dist/esm/pipeline/spec/chart/pipeline/columnParallel.js.map +1 -1
  43. package/dist/esm/pipeline/spec/chart/pipeline/columnPercent.js +3 -2
  44. package/dist/esm/pipeline/spec/chart/pipeline/columnPercent.js.map +1 -1
  45. package/dist/esm/pipeline/spec/chart/pipeline/dualAxis.js +5 -4
  46. package/dist/esm/pipeline/spec/chart/pipeline/dualAxis.js.map +1 -1
  47. package/dist/esm/pipeline/spec/chart/pipeline/histogram.js +3 -2
  48. package/dist/esm/pipeline/spec/chart/pipeline/histogram.js.map +1 -1
  49. package/dist/esm/pipeline/spec/chart/pipeline/line.js +3 -2
  50. package/dist/esm/pipeline/spec/chart/pipeline/line.js.map +1 -1
  51. package/dist/esm/pipeline/spec/chart/pipeline/scatter.js +3 -2
  52. package/dist/esm/pipeline/spec/chart/pipeline/scatter.js.map +1 -1
  53. package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationPointOfDualAxis.d.ts +2 -0
  54. package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationPointOfDualAxis.js +94 -0
  55. package/dist/esm/pipeline/spec/chart/pipes/annotation/annotationPointOfDualAxis.js.map +1 -0
  56. package/dist/esm/pipeline/spec/chart/pipes/annotation/index.d.ts +1 -0
  57. package/dist/esm/pipeline/spec/chart/pipes/annotation/index.js +2 -1
  58. package/dist/esm/pipeline/spec/chart/pipes/annotation/utils.d.ts +1 -1
  59. package/dist/esm/pipeline/spec/chart/pipes/annotation/utils.js +2 -1
  60. package/dist/esm/pipeline/spec/chart/pipes/annotation/utils.js.map +1 -1
  61. package/dist/esm/pipeline/spec/chart/pipes/axes/xBand.js +12 -1
  62. package/dist/esm/pipeline/spec/chart/pipes/axes/xBand.js.map +1 -1
  63. package/dist/esm/pipeline/spec/chart/pipes/axes/yBand.js +12 -1
  64. package/dist/esm/pipeline/spec/chart/pipes/axes/yBand.js.map +1 -1
  65. package/dist/esm/pipeline/spec/chart/pipes/crosshair/horizontalCrosshairLine.js +3 -0
  66. package/dist/esm/pipeline/spec/chart/pipes/crosshair/horizontalCrosshairLine.js.map +1 -1
  67. package/dist/esm/pipeline/spec/chart/pipes/crosshair/horizontalCrosshairRect.js +3 -0
  68. package/dist/esm/pipeline/spec/chart/pipes/crosshair/horizontalCrosshairRect.js.map +1 -1
  69. package/dist/esm/pipeline/spec/chart/pipes/crosshair/verticalCrosshairLine.js +3 -0
  70. package/dist/esm/pipeline/spec/chart/pipes/crosshair/verticalCrosshairLine.js.map +1 -1
  71. package/dist/esm/pipeline/spec/chart/pipes/crosshair/verticalCrosshairRect.js +3 -0
  72. package/dist/esm/pipeline/spec/chart/pipes/crosshair/verticalCrosshairRect.js.map +1 -1
  73. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/dimensionLinkage.d.ts +2 -0
  74. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/dimensionLinkage.js +49 -0
  75. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/dimensionLinkage.js.map +1 -0
  76. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/index.d.ts +1 -0
  77. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/index.js +2 -1
  78. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/pivotGridStyle.js +15 -0
  79. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/pivotGridStyle.js.map +1 -1
  80. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/pivotIndicators.js +1 -0
  81. package/dist/esm/pipeline/spec/chart/pipes/pivotChart/pivotIndicators.js.map +1 -1
  82. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/columnRegressionLine.js +13 -9
  83. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/columnRegressionLine.js.map +1 -1
  84. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/ecdfRegressionLine.js +8 -5
  85. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/ecdfRegressionLine.js.map +1 -1
  86. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/kdeRegressionLine.js +8 -5
  87. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/kdeRegressionLine.js.map +1 -1
  88. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/linearRegressionLine.js +61 -29
  89. package/dist/esm/pipeline/spec/chart/pipes/regressionLine/linearRegressionLine.js.map +1 -1
  90. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipBoxplot.js +8 -8
  91. package/dist/esm/pipeline/spec/chart/pipes/tooltip/tooltipBoxplot.js.map +1 -1
  92. package/dist/esm/types/advancedVSeed.d.ts +175 -0
  93. package/dist/esm/types/advancedVSeed.js +1 -0
  94. package/dist/esm/types/advancedVSeed.js.map +1 -1
  95. package/dist/esm/types/chartType/area/area.d.ts +6 -1
  96. package/dist/esm/types/chartType/area/zArea.d.ts +5 -0
  97. package/dist/esm/types/chartType/area/zArea.js +2 -1
  98. package/dist/esm/types/chartType/area/zArea.js.map +1 -1
  99. package/dist/esm/types/chartType/areaPercent/areaPercent.d.ts +6 -1
  100. package/dist/esm/types/chartType/areaPercent/zAreaPercent.d.ts +5 -0
  101. package/dist/esm/types/chartType/areaPercent/zAreaPercent.js +2 -1
  102. package/dist/esm/types/chartType/areaPercent/zAreaPercent.js.map +1 -1
  103. package/dist/esm/types/chartType/bar/bar.d.ts +6 -1
  104. package/dist/esm/types/chartType/bar/zBar.d.ts +5 -0
  105. package/dist/esm/types/chartType/bar/zBar.js +2 -1
  106. package/dist/esm/types/chartType/bar/zBar.js.map +1 -1
  107. package/dist/esm/types/chartType/barParallel/barParallel.d.ts +6 -1
  108. package/dist/esm/types/chartType/barParallel/zBarParallel.d.ts +5 -0
  109. package/dist/esm/types/chartType/barParallel/zBarParallel.js +2 -1
  110. package/dist/esm/types/chartType/barParallel/zBarParallel.js.map +1 -1
  111. package/dist/esm/types/chartType/barPercent/barPercent.d.ts +6 -1
  112. package/dist/esm/types/chartType/barPercent/zBarPercent.d.ts +5 -0
  113. package/dist/esm/types/chartType/barPercent/zBarPercent.js +2 -1
  114. package/dist/esm/types/chartType/barPercent/zBarPercent.js.map +1 -1
  115. package/dist/esm/types/chartType/boxplot/boxplot.d.ts +6 -1
  116. package/dist/esm/types/chartType/boxplot/zBoxplot.d.ts +5 -0
  117. package/dist/esm/types/chartType/boxplot/zBoxplot.js +2 -1
  118. package/dist/esm/types/chartType/boxplot/zBoxplot.js.map +1 -1
  119. package/dist/esm/types/chartType/column/column.d.ts +6 -1
  120. package/dist/esm/types/chartType/column/zColumn.d.ts +5 -0
  121. package/dist/esm/types/chartType/column/zColumn.js +2 -1
  122. package/dist/esm/types/chartType/column/zColumn.js.map +1 -1
  123. package/dist/esm/types/chartType/columnParallel/columnParallel.d.ts +6 -1
  124. package/dist/esm/types/chartType/columnParallel/zColumnParallel.d.ts +5 -0
  125. package/dist/esm/types/chartType/columnParallel/zColumnParallel.js +2 -1
  126. package/dist/esm/types/chartType/columnParallel/zColumnParallel.js.map +1 -1
  127. package/dist/esm/types/chartType/columnPercent/columnPercent.d.ts +6 -1
  128. package/dist/esm/types/chartType/columnPercent/zColumnPercent.d.ts +5 -0
  129. package/dist/esm/types/chartType/columnPercent/zColumnPercent.js +2 -1
  130. package/dist/esm/types/chartType/columnPercent/zColumnPercent.js.map +1 -1
  131. package/dist/esm/types/chartType/dualAxis/dualAxis.d.ts +6 -1
  132. package/dist/esm/types/chartType/dualAxis/zDualAxis.d.ts +5 -0
  133. package/dist/esm/types/chartType/dualAxis/zDualAxis.js +2 -1
  134. package/dist/esm/types/chartType/dualAxis/zDualAxis.js.map +1 -1
  135. package/dist/esm/types/chartType/histogram/histogram.d.ts +6 -1
  136. package/dist/esm/types/chartType/histogram/zHistogram.d.ts +5 -0
  137. package/dist/esm/types/chartType/histogram/zHistogram.js +2 -1
  138. package/dist/esm/types/chartType/histogram/zHistogram.js.map +1 -1
  139. package/dist/esm/types/chartType/line/line.d.ts +6 -1
  140. package/dist/esm/types/chartType/line/zLine.d.ts +5 -0
  141. package/dist/esm/types/chartType/line/zLine.js +2 -1
  142. package/dist/esm/types/chartType/line/zLine.js.map +1 -1
  143. package/dist/esm/types/chartType/scatter/scatter.d.ts +6 -1
  144. package/dist/esm/types/chartType/scatter/zScatter.d.ts +5 -0
  145. package/dist/esm/types/chartType/scatter/zScatter.js +2 -1
  146. package/dist/esm/types/chartType/scatter/zScatter.js.map +1 -1
  147. package/dist/esm/types/index.d.ts +1 -0
  148. package/dist/esm/types/index.js +1 -0
  149. package/dist/esm/types/properties/config/area.d.ts +10 -0
  150. package/dist/esm/types/properties/config/area.js +3 -1
  151. package/dist/esm/types/properties/config/area.js.map +1 -1
  152. package/dist/esm/types/properties/config/bar.d.ts +15 -0
  153. package/dist/esm/types/properties/config/bar.js +3 -1
  154. package/dist/esm/types/properties/config/bar.js.map +1 -1
  155. package/dist/esm/types/properties/config/boxplot.d.ts +5 -0
  156. package/dist/esm/types/properties/config/boxplot.js +3 -1
  157. package/dist/esm/types/properties/config/boxplot.js.map +1 -1
  158. package/dist/esm/types/properties/config/column.d.ts +15 -0
  159. package/dist/esm/types/properties/config/column.js +3 -1
  160. package/dist/esm/types/properties/config/column.js.map +1 -1
  161. package/dist/esm/types/properties/config/config.d.ts +65 -0
  162. package/dist/esm/types/properties/config/dimensionLinkage/dimensionLinkage.d.ts +23 -0
  163. package/dist/esm/types/properties/config/dimensionLinkage/dimensionLinkage.js +9 -0
  164. package/dist/esm/types/properties/config/dimensionLinkage/dimensionLinkage.js.map +1 -0
  165. package/dist/esm/types/properties/config/dimensionLinkage/index.d.ts +1 -0
  166. package/dist/esm/types/properties/config/dimensionLinkage/index.js +1 -0
  167. package/dist/esm/types/properties/config/dualAxis.d.ts +5 -0
  168. package/dist/esm/types/properties/config/dualAxis.js +3 -1
  169. package/dist/esm/types/properties/config/dualAxis.js.map +1 -1
  170. package/dist/esm/types/properties/config/histogram.d.ts +5 -0
  171. package/dist/esm/types/properties/config/histogram.js +3 -1
  172. package/dist/esm/types/properties/config/histogram.js.map +1 -1
  173. package/dist/esm/types/properties/config/index.d.ts +1 -0
  174. package/dist/esm/types/properties/config/index.js +1 -0
  175. package/dist/esm/types/properties/config/label/pieLabel.d.ts +2 -2
  176. package/dist/esm/types/properties/config/line.d.ts +5 -0
  177. package/dist/esm/types/properties/config/line.js +3 -1
  178. package/dist/esm/types/properties/config/line.js.map +1 -1
  179. package/dist/esm/types/properties/config/scatter.d.ts +5 -0
  180. package/dist/esm/types/properties/config/scatter.js +3 -1
  181. package/dist/esm/types/properties/config/scatter.js.map +1 -1
  182. package/dist/esm/types/properties/regressionLine/ecdfRegressionLine.d.ts +2 -2
  183. package/dist/esm/types/properties/regressionLine/kdeRegressionLine.d.ts +2 -2
  184. package/dist/esm/types/properties/regressionLine/linearRegressionLine.d.ts +2 -2
  185. package/dist/esm/types/properties/regressionLine/logisticRegressionLine.d.ts +2 -2
  186. package/dist/esm/types/properties/regressionLine/lowessRegressionLine.d.ts +2 -2
  187. package/dist/esm/types/properties/regressionLine/polynomialRegressionLine.d.ts +2 -2
  188. package/dist/esm/types/properties/theme/customTheme.d.ts +130 -0
  189. package/dist/esm/types/zVseed.d.ts +65 -0
  190. package/dist/umd/index.js +540 -205
  191. package/dist/umd/index.js.map +1 -1
  192. package/package.json +5 -5
@@ -70,6 +70,51 @@ export declare const zAdvancedVSeed: z.ZodObject<{
70
70
  }, z.core.$strip>>;
71
71
  }, z.core.$strip>;
72
72
  }, z.core.$strip>>;
73
+ pivotAllDatasetReshapeInfo: z.ZodArray<z.ZodObject<{
74
+ id: z.ZodString;
75
+ index: z.ZodNumber;
76
+ foldInfo: z.ZodObject<{
77
+ foldMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodUndefined]>>;
78
+ statistics: z.ZodObject<{
79
+ min: z.ZodNumber;
80
+ max: z.ZodNumber;
81
+ sum: z.ZodNumber;
82
+ count: z.ZodNumber;
83
+ colorMin: z.ZodNumber;
84
+ colorMax: z.ZodNumber;
85
+ }, z.core.$strip>;
86
+ measureId: z.ZodString;
87
+ measureName: z.ZodString;
88
+ measureValue: z.ZodString;
89
+ }, z.core.$strip>;
90
+ foldInfoList: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodObject<{
91
+ foldMap: z.ZodRecord<z.ZodString, z.ZodUnion<[z.ZodString, z.ZodUndefined]>>;
92
+ statistics: z.ZodObject<{
93
+ min: z.ZodNumber;
94
+ max: z.ZodNumber;
95
+ sum: z.ZodNumber;
96
+ count: z.ZodNumber;
97
+ colorMin: z.ZodNumber;
98
+ colorMax: z.ZodNumber;
99
+ }, z.core.$strip>;
100
+ measureId: z.ZodString;
101
+ measureName: z.ZodString;
102
+ measureValue: z.ZodString;
103
+ }, z.core.$strip>>>>;
104
+ unfoldInfo: z.ZodObject<{
105
+ encodingX: z.ZodString;
106
+ encodingY: z.ZodString;
107
+ encodingColor: z.ZodString;
108
+ encodingColorId: z.ZodString;
109
+ encodingDetail: z.ZodString;
110
+ encodingAngle: z.ZodString;
111
+ colorItems: z.ZodArray<z.ZodString>;
112
+ colorIdMap: z.ZodRecord<z.ZodString, z.ZodObject<{
113
+ id: z.ZodString;
114
+ alias: z.ZodString;
115
+ }, z.core.$strip>>;
116
+ }, z.core.$strip>;
117
+ }, z.core.$strip>>;
73
118
  dimensions: z.ZodArray<z.ZodUnion<[z.ZodType<import("./properties").DimensionGroup, unknown, z.core.$ZodTypeInternals<import("./properties").DimensionGroup, unknown>>, z.ZodObject<{
74
119
  id: z.ZodString;
75
120
  alias: z.ZodOptional<z.ZodString>;
@@ -746,6 +791,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
746
791
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
747
792
  }, z.core.$strip>>>;
748
793
  }, z.core.$strip>>>;
794
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
795
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
796
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
797
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
798
+ }, z.core.$strip>>>;
749
799
  }, z.core.$strip>>>;
750
800
  column: z.ZodOptional<z.ZodNullable<z.ZodObject<{
751
801
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -1161,6 +1211,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
1161
1211
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
1162
1212
  }, z.core.$strip>>>;
1163
1213
  }, z.core.$strip>>>;
1214
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1215
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1216
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1217
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1218
+ }, z.core.$strip>>>;
1164
1219
  regressionLine: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1165
1220
  ecdfRegressionLine: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodObject<{
1166
1221
  enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -1718,6 +1773,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
1718
1773
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
1719
1774
  }, z.core.$strip>>>;
1720
1775
  }, z.core.$strip>>>;
1776
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1777
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1778
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1779
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1780
+ }, z.core.$strip>>>;
1721
1781
  }, z.core.$strip>>>;
1722
1782
  columnPercent: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1723
1783
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -2133,6 +2193,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
2133
2193
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
2134
2194
  }, z.core.$strip>>>;
2135
2195
  }, z.core.$strip>>>;
2196
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2197
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2198
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2199
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2200
+ }, z.core.$strip>>>;
2136
2201
  }, z.core.$strip>>>;
2137
2202
  bar: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2138
2203
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -2546,6 +2611,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
2546
2611
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
2547
2612
  }, z.core.$strip>>>;
2548
2613
  }, z.core.$strip>>>;
2614
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2615
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2616
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2617
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
2618
+ }, z.core.$strip>>>;
2549
2619
  }, z.core.$strip>>>;
2550
2620
  barParallel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2551
2621
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -2959,6 +3029,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
2959
3029
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
2960
3030
  }, z.core.$strip>>>;
2961
3031
  }, z.core.$strip>>>;
3032
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3033
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3034
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3035
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3036
+ }, z.core.$strip>>>;
2962
3037
  }, z.core.$strip>>>;
2963
3038
  barPercent: z.ZodOptional<z.ZodNullable<z.ZodObject<{
2964
3039
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -3372,6 +3447,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
3372
3447
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
3373
3448
  }, z.core.$strip>>>;
3374
3449
  }, z.core.$strip>>>;
3450
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3451
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3452
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3453
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3454
+ }, z.core.$strip>>>;
3375
3455
  }, z.core.$strip>>>;
3376
3456
  area: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3377
3457
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -3785,6 +3865,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
3785
3865
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
3786
3866
  }, z.core.$strip>>>;
3787
3867
  }, z.core.$strip>>>;
3868
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3869
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3870
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3871
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
3872
+ }, z.core.$strip>>>;
3788
3873
  }, z.core.$strip>>>;
3789
3874
  areaPercent: z.ZodOptional<z.ZodNullable<z.ZodObject<{
3790
3875
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -4198,6 +4283,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
4198
4283
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
4199
4284
  }, z.core.$strip>>>;
4200
4285
  }, z.core.$strip>>>;
4286
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4287
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4288
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4289
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4290
+ }, z.core.$strip>>>;
4201
4291
  }, z.core.$strip>>>;
4202
4292
  scatter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4203
4293
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -4786,6 +4876,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
4786
4876
  confidenceIntervalOpacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
4787
4877
  }, z.core.$strip>>]>>>;
4788
4878
  }, z.core.$strip>>>;
4879
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4880
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4881
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4882
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
4883
+ }, z.core.$strip>>>;
4789
4884
  }, z.core.$strip>>>;
4790
4885
  dualAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
4791
4886
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -5441,6 +5536,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
5441
5536
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
5442
5537
  }, z.core.$strip>>>;
5443
5538
  }, z.core.$strip>>>;
5539
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5540
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5541
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5542
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
5543
+ }, z.core.$strip>>>;
5444
5544
  }, z.core.$strip>>>;
5445
5545
  rose: z.ZodOptional<z.ZodNullable<z.ZodObject<{
5446
5546
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -7334,6 +7434,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
7334
7434
  }, z.core.$strip>>>;
7335
7435
  }, z.core.$strip>>>;
7336
7436
  whiskers: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber>]>>>>;
7437
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7438
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
7439
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
7440
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
7441
+ }, z.core.$strip>>>;
7337
7442
  }, z.core.$strip>>>;
7338
7443
  histogram: z.ZodOptional<z.ZodNullable<z.ZodObject<{
7339
7444
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -7892,6 +7997,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
7892
7997
  confidenceIntervalOpacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
7893
7998
  }, z.core.$strip>>]>>>;
7894
7999
  }, z.core.$strip>>>;
8000
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
8001
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
8002
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
8003
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
8004
+ }, z.core.$strip>>>;
7895
8005
  }, z.core.$strip>>>;
7896
8006
  }, z.core.$strip>;
7897
8007
  analysis: z.ZodObject<{
@@ -9050,6 +9160,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
9050
9160
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
9051
9161
  }, z.core.$strip>>>;
9052
9162
  }, z.core.$strip>>>;
9163
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9164
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
9165
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
9166
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
9167
+ }, z.core.$strip>>>;
9053
9168
  }, z.core.$strip>>>;
9054
9169
  column: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9055
9170
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -9465,6 +9580,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
9465
9580
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
9466
9581
  }, z.core.$strip>>>;
9467
9582
  }, z.core.$strip>>>;
9583
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9584
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
9585
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
9586
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
9587
+ }, z.core.$strip>>>;
9468
9588
  regressionLine: z.ZodOptional<z.ZodNullable<z.ZodObject<{
9469
9589
  ecdfRegressionLine: z.ZodOptional<z.ZodNullable<z.ZodUnion<[z.ZodObject<{
9470
9590
  enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
@@ -10022,6 +10142,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
10022
10142
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
10023
10143
  }, z.core.$strip>>>;
10024
10144
  }, z.core.$strip>>>;
10145
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10146
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10147
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10148
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10149
+ }, z.core.$strip>>>;
10025
10150
  }, z.core.$strip>>>;
10026
10151
  columnPercent: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10027
10152
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -10437,6 +10562,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
10437
10562
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
10438
10563
  }, z.core.$strip>>>;
10439
10564
  }, z.core.$strip>>>;
10565
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10566
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10567
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10568
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10569
+ }, z.core.$strip>>>;
10440
10570
  }, z.core.$strip>>>;
10441
10571
  bar: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10442
10572
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -10850,6 +10980,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
10850
10980
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
10851
10981
  }, z.core.$strip>>>;
10852
10982
  }, z.core.$strip>>>;
10983
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10984
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10985
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10986
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
10987
+ }, z.core.$strip>>>;
10853
10988
  }, z.core.$strip>>>;
10854
10989
  barParallel: z.ZodOptional<z.ZodNullable<z.ZodObject<{
10855
10990
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -11263,6 +11398,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
11263
11398
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
11264
11399
  }, z.core.$strip>>>;
11265
11400
  }, z.core.$strip>>>;
11401
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11402
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11403
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11404
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11405
+ }, z.core.$strip>>>;
11266
11406
  }, z.core.$strip>>>;
11267
11407
  barPercent: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11268
11408
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -11676,6 +11816,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
11676
11816
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
11677
11817
  }, z.core.$strip>>>;
11678
11818
  }, z.core.$strip>>>;
11819
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11820
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11821
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11822
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
11823
+ }, z.core.$strip>>>;
11679
11824
  }, z.core.$strip>>>;
11680
11825
  area: z.ZodOptional<z.ZodNullable<z.ZodObject<{
11681
11826
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -12089,6 +12234,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
12089
12234
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
12090
12235
  }, z.core.$strip>>>;
12091
12236
  }, z.core.$strip>>>;
12237
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12238
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12239
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12240
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12241
+ }, z.core.$strip>>>;
12092
12242
  }, z.core.$strip>>>;
12093
12243
  areaPercent: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12094
12244
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -12502,6 +12652,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
12502
12652
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
12503
12653
  }, z.core.$strip>>>;
12504
12654
  }, z.core.$strip>>>;
12655
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12656
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12657
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12658
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
12659
+ }, z.core.$strip>>>;
12505
12660
  }, z.core.$strip>>>;
12506
12661
  scatter: z.ZodOptional<z.ZodNullable<z.ZodObject<{
12507
12662
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -13090,6 +13245,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
13090
13245
  confidenceIntervalOpacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
13091
13246
  }, z.core.$strip>>]>>>;
13092
13247
  }, z.core.$strip>>>;
13248
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13249
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13250
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13251
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13252
+ }, z.core.$strip>>>;
13093
13253
  }, z.core.$strip>>>;
13094
13254
  dualAxis: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13095
13255
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -13745,6 +13905,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
13745
13905
  outerPadding: z.ZodOptional<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>>;
13746
13906
  }, z.core.$strip>>>;
13747
13907
  }, z.core.$strip>>>;
13908
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13909
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13910
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13911
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
13912
+ }, z.core.$strip>>>;
13748
13913
  }, z.core.$strip>>>;
13749
13914
  rose: z.ZodOptional<z.ZodNullable<z.ZodObject<{
13750
13915
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -15638,6 +15803,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
15638
15803
  }, z.core.$strip>>>;
15639
15804
  }, z.core.$strip>>>;
15640
15805
  whiskers: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodUnion<[z.ZodNumber, z.ZodArray<z.ZodNumber>]>>>>;
15806
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
15807
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
15808
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
15809
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
15810
+ }, z.core.$strip>>>;
15641
15811
  }, z.core.$strip>>>;
15642
15812
  histogram: z.ZodOptional<z.ZodNullable<z.ZodObject<{
15643
15813
  backgroundColor: z.ZodOptional<z.ZodNullable<z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodString>>>>>;
@@ -16196,6 +16366,11 @@ export declare const zAdvancedVSeed: z.ZodObject<{
16196
16366
  confidenceIntervalOpacity: z.ZodOptional<z.ZodNullable<z.ZodNumber>>;
16197
16367
  }, z.core.$strip>>]>>>;
16198
16368
  }, z.core.$strip>>>;
16369
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
16370
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16371
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16372
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
16373
+ }, z.core.$strip>>>;
16199
16374
  }, z.core.$strip>>>;
16200
16375
  }, z.core.$strip>>>;
16201
16376
  }, z.core.$strip>;
@@ -14,6 +14,7 @@ const zAdvancedVSeed = z.object({
14
14
  chartType: zChartType,
15
15
  dataset: zDataset,
16
16
  datasetReshapeInfo: zDatasetReshapeInfo,
17
+ pivotAllDatasetReshapeInfo: zDatasetReshapeInfo,
17
18
  dimensions: zDimensionTree,
18
19
  measures: zMeasureTree,
19
20
  reshapeMeasures: zMeasureTree.optional(),
@@ -1 +1 @@
1
- {"version":3,"file":"types/advancedVSeed.js","sources":["webpack://@visactor/vseed/./src/types/advancedVSeed.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zChartType } from './properties/chartType'\nimport { zDataset } from './properties/dataset'\nimport { zDimensionTree } from './properties/dimensions'\nimport { zMeasureTree } from './properties/measures'\nimport { zEncoding } from './properties/encoding'\nimport { zDatasetReshapeInfo } from './properties/datasetReshapeInfo'\nimport { zTheme, zCustomThemeConfig } from './properties/theme'\nimport { zConfig } from './properties/config'\nimport { zAnalysis, zAnnotation, zRegressionLine, zMarkStyle } from './properties'\nimport { zLocale } from './i18n'\nimport { zCellStyle } from './properties/cellStyle/cellStyle'\n\nexport const zAdvancedVSeed = z.object({\n chartType: zChartType,\n dataset: zDataset,\n datasetReshapeInfo: zDatasetReshapeInfo,\n dimensions: zDimensionTree,\n measures: zMeasureTree,\n reshapeMeasures: zMeasureTree.optional(),\n reshapeDimensions: zDimensionTree.optional(),\n encoding: zEncoding,\n config: zConfig,\n analysis: zAnalysis,\n theme: zTheme,\n markStyle: zMarkStyle,\n cellStyle: zCellStyle,\n customTheme: zCustomThemeConfig,\n annotation: zAnnotation,\n locale: zLocale,\n regressionLine: zRegressionLine,\n})\n\nexport type AdvancedVSeed = z.infer<typeof zAdvancedVSeed>\n"],"names":["zAdvancedVSeed","z","zChartType","zDataset","zDatasetReshapeInfo","zDimensionTree","zMeasureTree","zEncoding","zConfig","zAnalysis","zTheme","zMarkStyle","zCellStyle","zCustomThemeConfig","zAnnotation","zLocale","zRegressionLine"],"mappings":";;;;;;;;;;;;AAaO,MAAMA,iBAAiBC,EAAE,MAAM,CAAC;IACrC,WAAWC;IACX,SAASC;IACT,oBAAoBC;IACpB,YAAYC;IACZ,UAAUC;IACV,iBAAiBA,aAAa,QAAQ;IACtC,mBAAmBD,eAAe,QAAQ;IAC1C,UAAUE;IACV,QAAQC;IACR,UAAUC;IACV,OAAOC;IACP,WAAWC;IACX,WAAWC;IACX,aAAaC;IACb,YAAYC;IACZ,QAAQC;IACR,gBAAgBC;AAClB"}
1
+ {"version":3,"file":"types/advancedVSeed.js","sources":["webpack://@visactor/vseed/./src/types/advancedVSeed.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zChartType } from './properties/chartType'\nimport { zDataset } from './properties/dataset'\nimport { zDimensionTree } from './properties/dimensions'\nimport { zMeasureTree } from './properties/measures'\nimport { zEncoding } from './properties/encoding'\nimport { zDatasetReshapeInfo } from './properties/datasetReshapeInfo'\nimport { zTheme, zCustomThemeConfig } from './properties/theme'\nimport { zConfig } from './properties/config'\nimport { zAnalysis, zAnnotation, zRegressionLine, zMarkStyle } from './properties'\nimport { zLocale } from './i18n'\nimport { zCellStyle } from './properties/cellStyle/cellStyle'\n\nexport const zAdvancedVSeed = z.object({\n chartType: zChartType,\n dataset: zDataset,\n datasetReshapeInfo: zDatasetReshapeInfo,\n pivotAllDatasetReshapeInfo: zDatasetReshapeInfo,\n dimensions: zDimensionTree,\n measures: zMeasureTree,\n reshapeMeasures: zMeasureTree.optional(),\n reshapeDimensions: zDimensionTree.optional(),\n encoding: zEncoding,\n config: zConfig,\n analysis: zAnalysis,\n theme: zTheme,\n markStyle: zMarkStyle,\n cellStyle: zCellStyle,\n customTheme: zCustomThemeConfig,\n annotation: zAnnotation,\n locale: zLocale,\n regressionLine: zRegressionLine,\n})\n\nexport type AdvancedVSeed = z.infer<typeof zAdvancedVSeed>\n"],"names":["zAdvancedVSeed","z","zChartType","zDataset","zDatasetReshapeInfo","zDimensionTree","zMeasureTree","zEncoding","zConfig","zAnalysis","zTheme","zMarkStyle","zCellStyle","zCustomThemeConfig","zAnnotation","zLocale","zRegressionLine"],"mappings":";;;;;;;;;;;;AAaO,MAAMA,iBAAiBC,EAAE,MAAM,CAAC;IACrC,WAAWC;IACX,SAASC;IACT,oBAAoBC;IACpB,4BAA4BA;IAC5B,YAAYC;IACZ,UAAUC;IACV,iBAAiBA,aAAa,QAAQ;IACtC,mBAAmBD,eAAe,QAAQ;IAC1C,UAAUE;IACV,QAAQC;IACR,UAAUC;IACV,OAAOC;IACP,WAAWC;IACX,WAAWC;IACX,aAAaC;IACb,YAAYC;IACZ,QAAQC;IACR,gBAAgBC;AAClB"}
@@ -1,5 +1,5 @@
1
1
  import type { Locale } from '../../i18n';
2
- import type { AnnotationArea, AnnotationHorizontalLine, AnnotationPoint, AnnotationVerticalLine, AreaStyle, BackgroundColor, Color, Dataset, Dimensions, Label, Legend, LineStyle, PointStyle, Theme, Tooltip, XBandAxis, YLinearAxis, CrosshairLine, MeasureTree, Sort, SortLegend } from '../../properties';
2
+ import type { AnnotationArea, AnnotationHorizontalLine, AnnotationPoint, AnnotationVerticalLine, AreaStyle, BackgroundColor, Color, Dataset, Dimensions, Label, Legend, LineStyle, PointStyle, Theme, Tooltip, XBandAxis, YLinearAxis, CrosshairLine, MeasureTree, Sort, SortLegend, DimensionLinkage } from '../../properties';
3
3
  /**
4
4
  * @recommend
5
5
  * - 推荐字段配置: `1`个指标, `2`个维度
@@ -176,6 +176,11 @@ export interface Area {
176
176
  * @description 标注区域配置, 根据选择的数据, 定义图表的标注区域, 包括标注区域的位置, 样式等.
177
177
  */
178
178
  annotationArea?: AnnotationArea | AnnotationArea[];
179
+ /**
180
+ * @description 当图表开启透视功能或者指标组合的是否,是否开启维度联动功能
181
+ * 当hover 到某个维度值时,联动高亮其他图表中相同维度值的数据
182
+ */
183
+ dimensionLinkage?: DimensionLinkage;
179
184
  /**
180
185
  * 语言
181
186
  * @description 图表语言配置, 支持'zh-CN'与'en-US'两种语言, 另外可以调用 intl.setLocale('zh-CN') 方法设置语言
@@ -1724,6 +1724,11 @@ export declare const zArea: z.ZodObject<{
1724
1724
  areaLineDash: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
1725
1725
  outerPadding: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
1726
1726
  }, z.core.$strip>]>>>;
1727
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1728
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1729
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1730
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1731
+ }, z.core.$strip>>>;
1727
1732
  locale: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<{
1728
1733
  "zh-CN": "zh-CN";
1729
1734
  "en-US": "en-US";
@@ -1,6 +1,6 @@
1
1
  import { z } from "zod";
2
2
  import { zLocale } from "../../i18n/index.js";
3
- import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zAreaStyle, zBackgroundColor, zColor, zCrosshairLine, zDataset, zDimensions, zEncoding, zLabel, zLegend, zLineStyle, zMeasureTree, zPointStyle, zTheme, zTooltip, zXBandAxis, zYLinearAxis } from "../../properties/index.js";
3
+ import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zAreaStyle, zBackgroundColor, zColor, zCrosshairLine, zDataset, zDimensionLinkage, zDimensions, zEncoding, zLabel, zLegend, zLineStyle, zMeasureTree, zPointStyle, zTheme, zTooltip, zXBandAxis, zYLinearAxis } from "../../properties/index.js";
4
4
  const zArea = z.object({
5
5
  chartType: z.literal('area'),
6
6
  dataset: zDataset.nullish(),
@@ -23,6 +23,7 @@ const zArea = z.object({
23
23
  annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),
24
24
  annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),
25
25
  annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),
26
+ dimensionLinkage: zDimensionLinkage.nullish(),
26
27
  locale: zLocale.nullish()
27
28
  });
28
29
  export { zArea };
@@ -1 +1 @@
1
- {"version":3,"file":"types/chartType/area/zArea.js","sources":["webpack://@visactor/vseed/./src/types/chartType/area/zArea.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zAreaStyle,\n zBackgroundColor,\n zColor,\n zCrosshairLine,\n zDataset,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zLineStyle,\n zMeasureTree,\n zPointStyle,\n zTheme,\n zTooltip,\n zXBandAxis,\n zYLinearAxis,\n} from '../../properties'\n\nexport const zArea = z.object({\n chartType: z.literal('area'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasureTree.nullish(),\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n theme: zTheme.nullish(),\n pointStyle: z.array(zPointStyle).or(zPointStyle).nullish(),\n lineStyle: z.array(zLineStyle).or(zLineStyle).nullish(),\n areaStyle: z.array(zAreaStyle).or(zAreaStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zArea","z","zDataset","zEncoding","zDimensions","zMeasureTree","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zXBandAxis","zYLinearAxis","zCrosshairLine","zTheme","zPointStyle","zLineStyle","zAreaStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zLocale"],"mappings":";;;AAyBO,MAAMA,QAAQC,EAAE,MAAM,CAAC;IAC5B,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,aAAa,OAAO;IAC9B,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,SAASC,SAAS,OAAO;IACzB,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,OAAOC,OAAO,OAAO;IACrB,YAAYb,EAAE,KAAK,CAACc,aAAa,EAAE,CAACA,aAAa,OAAO;IACxD,WAAWd,EAAE,KAAK,CAACe,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,WAAWf,EAAE,KAAK,CAACgB,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,iBAAiBhB,EAAE,KAAK,CAACiB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBjB,EAAE,KAAK,CAACkB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BlB,EAAE,KAAK,CAACmB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBnB,EAAE,KAAK,CAACoB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,QAAQC,QAAQ,OAAO;AACzB"}
1
+ {"version":3,"file":"types/chartType/area/zArea.js","sources":["webpack://@visactor/vseed/./src/types/chartType/area/zArea.ts"],"sourcesContent":["import { z } from 'zod'\nimport { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zAreaStyle,\n zBackgroundColor,\n zColor,\n zCrosshairLine,\n zDataset,\n zDimensionLinkage,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zLineStyle,\n zMeasureTree,\n zPointStyle,\n zTheme,\n zTooltip,\n zXBandAxis,\n zYLinearAxis,\n} from '../../properties'\n\nexport const zArea = z.object({\n chartType: z.literal('area'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasureTree.nullish(),\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n theme: zTheme.nullish(),\n pointStyle: z.array(zPointStyle).or(zPointStyle).nullish(),\n lineStyle: z.array(zLineStyle).or(zLineStyle).nullish(),\n areaStyle: z.array(zAreaStyle).or(zAreaStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n dimensionLinkage: zDimensionLinkage.nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zArea","z","zDataset","zEncoding","zDimensions","zMeasureTree","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zXBandAxis","zYLinearAxis","zCrosshairLine","zTheme","zPointStyle","zLineStyle","zAreaStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zDimensionLinkage","zLocale"],"mappings":";;;AA0BO,MAAMA,QAAQC,EAAE,MAAM,CAAC;IAC5B,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,aAAa,OAAO;IAC9B,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,SAASC,SAAS,OAAO;IACzB,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,OAAOC,OAAO,OAAO;IACrB,YAAYb,EAAE,KAAK,CAACc,aAAa,EAAE,CAACA,aAAa,OAAO;IACxD,WAAWd,EAAE,KAAK,CAACe,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,WAAWf,EAAE,KAAK,CAACgB,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,iBAAiBhB,EAAE,KAAK,CAACiB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBjB,EAAE,KAAK,CAACkB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BlB,EAAE,KAAK,CAACmB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBnB,EAAE,KAAK,CAACoB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,kBAAkBC,kBAAkB,OAAO;IAC3C,QAAQC,QAAQ,OAAO;AACzB"}
@@ -1,5 +1,5 @@
1
1
  import type { Locale } from '../../i18n';
2
- import type { AnnotationArea, AnnotationHorizontalLine, AnnotationPoint, AnnotationVerticalLine, AreaStyle, BackgroundColor, Color, Dataset, Dimensions, Label, Legend, LineStyle, PointStyle, Theme, Tooltip, XBandAxis, YLinearAxis, CrosshairLine, MeasureTree, Sort, SortLegend } from '../../properties';
2
+ import type { AnnotationArea, AnnotationHorizontalLine, AnnotationPoint, AnnotationVerticalLine, AreaStyle, BackgroundColor, Color, Dataset, Dimensions, Label, Legend, LineStyle, PointStyle, Theme, Tooltip, XBandAxis, YLinearAxis, CrosshairLine, MeasureTree, Sort, SortLegend, DimensionLinkage } from '../../properties';
3
3
  /**
4
4
  * @description 百分比面积图,适用于展示多类别占比随时间变化的趋势,Y轴以百分比形式展示占比关系
5
5
  * 适用场景:
@@ -174,6 +174,11 @@ export interface AreaPercent {
174
174
  * @description 标注区域配置, 根据选择的数据, 定义图表的标注区域, 包括标注区域的位置, 样式等.
175
175
  */
176
176
  annotationArea?: AnnotationArea | AnnotationArea[];
177
+ /**
178
+ * 当图表开启透视功能或者指标组合的是否,是否开启维度联动功能
179
+ * 当hover 到某个维度值时,联动高亮其他图表中相同维度值的数据
180
+ */
181
+ dimensionLinkage?: DimensionLinkage;
177
182
  /**
178
183
  * 语言
179
184
  * @description 图表语言配置, 支持'zh-CN'与'en-US'两种语言, 另外可以调用 intl.setLocale('zh-CN') 方法设置语言
@@ -1724,6 +1724,11 @@ export declare const zAreaPercent: z.ZodObject<{
1724
1724
  areaLineDash: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
1725
1725
  outerPadding: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
1726
1726
  }, z.core.$strip>]>>>;
1727
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1728
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1729
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1730
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1731
+ }, z.core.$strip>>>;
1727
1732
  locale: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<{
1728
1733
  "zh-CN": "zh-CN";
1729
1734
  "en-US": "en-US";
@@ -1,5 +1,5 @@
1
1
  import { zLocale } from "../../i18n/index.js";
2
- import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zAreaStyle, zBackgroundColor, zColor, zCrosshairLine, zDataset, zDimensions, zEncoding, zLabel, zLegend, zLineStyle, zMeasureTree, zPointStyle, zTheme, zTooltip, zXBandAxis, zYLinearAxis } from "../../properties/index.js";
2
+ import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zAreaStyle, zBackgroundColor, zColor, zCrosshairLine, zDataset, zDimensionLinkage, zDimensions, zEncoding, zLabel, zLegend, zLineStyle, zMeasureTree, zPointStyle, zTheme, zTooltip, zXBandAxis, zYLinearAxis } from "../../properties/index.js";
3
3
  import { z } from "zod";
4
4
  const zAreaPercent = z.object({
5
5
  chartType: z.literal('areaPercent'),
@@ -23,6 +23,7 @@ const zAreaPercent = z.object({
23
23
  annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),
24
24
  annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),
25
25
  annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),
26
+ dimensionLinkage: zDimensionLinkage.nullish(),
26
27
  locale: zLocale.nullish()
27
28
  });
28
29
  export { zAreaPercent };
@@ -1 +1 @@
1
- {"version":3,"file":"types/chartType/areaPercent/zAreaPercent.js","sources":["webpack://@visactor/vseed/./src/types/chartType/areaPercent/zAreaPercent.ts"],"sourcesContent":["import { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zAreaStyle,\n zBackgroundColor,\n zColor,\n zCrosshairLine,\n zDataset,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zLineStyle,\n zMeasureTree,\n zPointStyle,\n zTheme,\n zTooltip,\n zXBandAxis,\n zYLinearAxis,\n} from '../../properties'\n\nimport { z } from 'zod'\n\nexport const zAreaPercent = z.object({\n chartType: z.literal('areaPercent'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasureTree.nullish(),\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n theme: zTheme.nullish(),\n pointStyle: z.array(zPointStyle).or(zPointStyle).nullish(),\n lineStyle: z.array(zLineStyle).or(zLineStyle).nullish(),\n areaStyle: z.array(zAreaStyle).or(zAreaStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zAreaPercent","z","zDataset","zEncoding","zDimensions","zMeasureTree","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zXBandAxis","zYLinearAxis","zCrosshairLine","zTheme","zPointStyle","zLineStyle","zAreaStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zLocale"],"mappings":";;;AA0BO,MAAMA,eAAeC,EAAE,MAAM,CAAC;IACnC,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,aAAa,OAAO;IAC9B,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,SAASC,SAAS,OAAO;IACzB,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,OAAOC,OAAO,OAAO;IACrB,YAAYb,EAAE,KAAK,CAACc,aAAa,EAAE,CAACA,aAAa,OAAO;IACxD,WAAWd,EAAE,KAAK,CAACe,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,WAAWf,EAAE,KAAK,CAACgB,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,iBAAiBhB,EAAE,KAAK,CAACiB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBjB,EAAE,KAAK,CAACkB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BlB,EAAE,KAAK,CAACmB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBnB,EAAE,KAAK,CAACoB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,QAAQC,QAAQ,OAAO;AACzB"}
1
+ {"version":3,"file":"types/chartType/areaPercent/zAreaPercent.js","sources":["webpack://@visactor/vseed/./src/types/chartType/areaPercent/zAreaPercent.ts"],"sourcesContent":["import { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zAreaStyle,\n zBackgroundColor,\n zColor,\n zCrosshairLine,\n zDataset,\n zDimensionLinkage,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zLineStyle,\n zMeasureTree,\n zPointStyle,\n zTheme,\n zTooltip,\n zXBandAxis,\n zYLinearAxis,\n} from '../../properties'\n\nimport { z } from 'zod'\n\nexport const zAreaPercent = z.object({\n chartType: z.literal('areaPercent'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasureTree.nullish(),\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n xAxis: zXBandAxis.nullish(),\n yAxis: zYLinearAxis.nullish(),\n crosshairLine: zCrosshairLine.nullish(),\n theme: zTheme.nullish(),\n pointStyle: z.array(zPointStyle).or(zPointStyle).nullish(),\n lineStyle: z.array(zLineStyle).or(zLineStyle).nullish(),\n areaStyle: z.array(zAreaStyle).or(zAreaStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n dimensionLinkage: zDimensionLinkage.nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zAreaPercent","z","zDataset","zEncoding","zDimensions","zMeasureTree","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zXBandAxis","zYLinearAxis","zCrosshairLine","zTheme","zPointStyle","zLineStyle","zAreaStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zDimensionLinkage","zLocale"],"mappings":";;;AA2BO,MAAMA,eAAeC,EAAE,MAAM,CAAC;IACnC,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,aAAa,OAAO;IAC9B,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,SAASC,SAAS,OAAO;IACzB,OAAOC,WAAW,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,eAAeC,eAAe,OAAO;IACrC,OAAOC,OAAO,OAAO;IACrB,YAAYb,EAAE,KAAK,CAACc,aAAa,EAAE,CAACA,aAAa,OAAO;IACxD,WAAWd,EAAE,KAAK,CAACe,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,WAAWf,EAAE,KAAK,CAACgB,YAAY,EAAE,CAACA,YAAY,OAAO;IACrD,iBAAiBhB,EAAE,KAAK,CAACiB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBjB,EAAE,KAAK,CAACkB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BlB,EAAE,KAAK,CAACmB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBnB,EAAE,KAAK,CAACoB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,kBAAkBC,kBAAkB,OAAO;IAC3C,QAAQC,QAAQ,OAAO;AACzB"}
@@ -1,5 +1,5 @@
1
1
  import { type Locale } from '../../i18n';
2
- import type { BarMaxWidth, MeasureTree, Sort, SortLegend } from '../../properties';
2
+ import type { BarMaxWidth, DimensionLinkage, MeasureTree, Sort, SortLegend } from '../../properties';
3
3
  import { type AnnotationArea, type AnnotationHorizontalLine, type AnnotationPoint, type AnnotationVerticalLine, type BackgroundColor, type BarStyle, type Color, type CrosshairRect, type Dataset, type Dimensions, type Label, type Legend, type StackCornerRadius, type Theme, type Tooltip, type XLinearAxis, type YBandAxis } from '../../properties';
4
4
  /**
5
5
  * @description 条形图,适用于横向数据对比场景,Y轴为类目轴(分类数据),X轴为数值轴(连续数据),柱子横向排列
@@ -149,6 +149,11 @@ export interface Bar {
149
149
  * @description 标注区域配置, 根据选择的数据, 定义图表的标注区域, 包括标注区域的位置, 样式等.
150
150
  */
151
151
  annotationArea?: AnnotationArea | AnnotationArea[];
152
+ /**
153
+ * 当图表开启透视功能或者指标组合的是否,是否开启维度联动功能
154
+ * 当hover 到某个维度值时,联动高亮其他图表中相同维度值的数据
155
+ */
156
+ dimensionLinkage?: DimensionLinkage;
152
157
  /**
153
158
  * @description 图表语言配置, 支持'zh-CN'与'en-US'两种语言, 另外可以调用 intl.setLocale('zh-CN') 方法设置语言
154
159
  * @default 'zh-CN'
@@ -1409,6 +1409,11 @@ export declare const zBar: z.ZodObject<{
1409
1409
  areaLineDash: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
1410
1410
  outerPadding: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
1411
1411
  }, z.core.$strip>]>>>;
1412
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1413
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1414
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1415
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1416
+ }, z.core.$strip>>>;
1412
1417
  locale: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<{
1413
1418
  "zh-CN": "zh-CN";
1414
1419
  "en-US": "en-US";
@@ -1,5 +1,5 @@
1
1
  import { zLocale } from "../../i18n/index.js";
2
- import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zBackgroundColor, zBarMaxWidth, zBarStyle, zColor, zCrosshairRect, zDataset, zDimensions, zEncoding, zLabel, zLegend, zMeasureTree, zStackCornerRadius, zTheme, zTooltip, zXLinearAxis, zYBandAxis } from "../../properties/index.js";
2
+ import { zAnnotationArea, zAnnotationHorizontalLine, zAnnotationPoint, zAnnotationVerticalLine, zBackgroundColor, zBarMaxWidth, zBarStyle, zColor, zCrosshairRect, zDataset, zDimensionLinkage, zDimensions, zEncoding, zLabel, zLegend, zMeasureTree, zStackCornerRadius, zTheme, zTooltip, zXLinearAxis, zYBandAxis } from "../../properties/index.js";
3
3
  import { z } from "zod";
4
4
  const zBar = z.object({
5
5
  chartType: z.literal('bar'),
@@ -23,6 +23,7 @@ const zBar = z.object({
23
23
  annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),
24
24
  annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),
25
25
  annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),
26
+ dimensionLinkage: zDimensionLinkage.nullish(),
26
27
  locale: zLocale.nullish()
27
28
  });
28
29
  export { zBar };
@@ -1 +1 @@
1
- {"version":3,"file":"types/chartType/bar/zBar.js","sources":["webpack://@visactor/vseed/./src/types/chartType/bar/zBar.ts"],"sourcesContent":["import { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zBackgroundColor,\n zBarMaxWidth,\n zBarStyle,\n zColor,\n zCrosshairRect,\n zDataset,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zMeasureTree,\n zStackCornerRadius,\n zTheme,\n zTooltip,\n zXLinearAxis,\n zYBandAxis,\n} from '../../properties'\n\nimport { z } from 'zod'\n\nexport const zBar = z.object({\n chartType: z.literal('bar'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasureTree.nullish(),\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n xAxis: zXLinearAxis.nullish(),\n yAxis: zYBandAxis.nullish(),\n crosshairRect: zCrosshairRect.nullish(),\n stackCornerRadius: zStackCornerRadius.nullish(),\n barMaxWidth: zBarMaxWidth.nullish(),\n theme: zTheme.nullish(),\n barStyle: z.array(zBarStyle).or(zBarStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zBar","z","zDataset","zEncoding","zDimensions","zMeasureTree","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zXLinearAxis","zYBandAxis","zCrosshairRect","zStackCornerRadius","zBarMaxWidth","zTheme","zBarStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zLocale"],"mappings":";;;AA0BO,MAAMA,OAAOC,EAAE,MAAM,CAAC;IAC3B,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,aAAa,OAAO;IAC9B,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,SAASC,SAAS,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,OAAOC,WAAW,OAAO;IACzB,eAAeC,eAAe,OAAO;IACrC,mBAAmBC,mBAAmB,OAAO;IAC7C,aAAaC,aAAa,OAAO;IACjC,OAAOC,OAAO,OAAO;IACrB,UAAUf,EAAE,KAAK,CAACgB,WAAW,EAAE,CAACA,WAAW,OAAO;IAClD,iBAAiBhB,EAAE,KAAK,CAACiB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBjB,EAAE,KAAK,CAACkB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BlB,EAAE,KAAK,CAACmB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBnB,EAAE,KAAK,CAACoB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,QAAQC,QAAQ,OAAO;AACzB"}
1
+ {"version":3,"file":"types/chartType/bar/zBar.js","sources":["webpack://@visactor/vseed/./src/types/chartType/bar/zBar.ts"],"sourcesContent":["import { zLocale } from '../../i18n'\nimport {\n zAnnotationArea,\n zAnnotationHorizontalLine,\n zAnnotationPoint,\n zAnnotationVerticalLine,\n zBackgroundColor,\n zBarMaxWidth,\n zBarStyle,\n zColor,\n zCrosshairRect,\n zDataset,\n zDimensionLinkage,\n zDimensions,\n zEncoding,\n zLabel,\n zLegend,\n zMeasureTree,\n zStackCornerRadius,\n zTheme,\n zTooltip,\n zXLinearAxis,\n zYBandAxis,\n} from '../../properties'\n\nimport { z } from 'zod'\n\nexport const zBar = z.object({\n chartType: z.literal('bar'),\n dataset: zDataset.nullish(),\n encoding: zEncoding.nullish(),\n dimensions: zDimensions.nullish(),\n measures: zMeasureTree.nullish(),\n backgroundColor: zBackgroundColor.nullish(),\n color: zColor.nullish(),\n label: zLabel.nullish(),\n legend: zLegend.nullish(),\n tooltip: zTooltip.nullish(),\n xAxis: zXLinearAxis.nullish(),\n yAxis: zYBandAxis.nullish(),\n crosshairRect: zCrosshairRect.nullish(),\n stackCornerRadius: zStackCornerRadius.nullish(),\n barMaxWidth: zBarMaxWidth.nullish(),\n theme: zTheme.nullish(),\n barStyle: z.array(zBarStyle).or(zBarStyle).nullish(),\n annotationPoint: z.array(zAnnotationPoint).or(zAnnotationPoint).nullish(),\n annotationVerticalLine: z.array(zAnnotationVerticalLine).or(zAnnotationVerticalLine).nullish(),\n annotationHorizontalLine: z.array(zAnnotationHorizontalLine).or(zAnnotationHorizontalLine).nullish(),\n annotationArea: z.array(zAnnotationArea).or(zAnnotationArea).nullish(),\n dimensionLinkage: zDimensionLinkage.nullish(),\n locale: zLocale.nullish(),\n})\n"],"names":["zBar","z","zDataset","zEncoding","zDimensions","zMeasureTree","zBackgroundColor","zColor","zLabel","zLegend","zTooltip","zXLinearAxis","zYBandAxis","zCrosshairRect","zStackCornerRadius","zBarMaxWidth","zTheme","zBarStyle","zAnnotationPoint","zAnnotationVerticalLine","zAnnotationHorizontalLine","zAnnotationArea","zDimensionLinkage","zLocale"],"mappings":";;;AA2BO,MAAMA,OAAOC,EAAE,MAAM,CAAC;IAC3B,WAAWA,EAAE,OAAO,CAAC;IACrB,SAASC,SAAS,OAAO;IACzB,UAAUC,UAAU,OAAO;IAC3B,YAAYC,YAAY,OAAO;IAC/B,UAAUC,aAAa,OAAO;IAC9B,iBAAiBC,iBAAiB,OAAO;IACzC,OAAOC,OAAO,OAAO;IACrB,OAAOC,OAAO,OAAO;IACrB,QAAQC,QAAQ,OAAO;IACvB,SAASC,SAAS,OAAO;IACzB,OAAOC,aAAa,OAAO;IAC3B,OAAOC,WAAW,OAAO;IACzB,eAAeC,eAAe,OAAO;IACrC,mBAAmBC,mBAAmB,OAAO;IAC7C,aAAaC,aAAa,OAAO;IACjC,OAAOC,OAAO,OAAO;IACrB,UAAUf,EAAE,KAAK,CAACgB,WAAW,EAAE,CAACA,WAAW,OAAO;IAClD,iBAAiBhB,EAAE,KAAK,CAACiB,kBAAkB,EAAE,CAACA,kBAAkB,OAAO;IACvE,wBAAwBjB,EAAE,KAAK,CAACkB,yBAAyB,EAAE,CAACA,yBAAyB,OAAO;IAC5F,0BAA0BlB,EAAE,KAAK,CAACmB,2BAA2B,EAAE,CAACA,2BAA2B,OAAO;IAClG,gBAAgBnB,EAAE,KAAK,CAACoB,iBAAiB,EAAE,CAACA,iBAAiB,OAAO;IACpE,kBAAkBC,kBAAkB,OAAO;IAC3C,QAAQC,QAAQ,OAAO;AACzB"}
@@ -1,5 +1,5 @@
1
1
  import type { Locale } from '../../i18n';
2
- import type { AnnotationArea, AnnotationHorizontalLine, AnnotationPoint, AnnotationVerticalLine, BackgroundColor, BarStyle, Color, CrosshairRect, Dataset, Dimensions, Label, Legend, StackCornerRadius, Theme, Tooltip, XLinearAxis, YBandAxis, MeasureTree, Sort, SortLegend, BarMaxWidth, BarGapInGroup } from '../../properties';
2
+ import type { AnnotationArea, AnnotationHorizontalLine, AnnotationPoint, AnnotationVerticalLine, BackgroundColor, BarStyle, Color, CrosshairRect, Dataset, Dimensions, Label, Legend, StackCornerRadius, Theme, Tooltip, XLinearAxis, YBandAxis, MeasureTree, Sort, SortLegend, BarMaxWidth, BarGapInGroup, DimensionLinkage } from '../../properties';
3
3
  /**
4
4
  * @description 并列条形图,适用于多指标横向并行对比场景,多个条形平行排列展示不同指标值
5
5
  * 适用场景:
@@ -151,6 +151,11 @@ export interface BarParallel {
151
151
  * @description 标注区域配置, 根据选择的数据, 定义图表的标注区域, 包括标注区域的位置, 样式等.
152
152
  */
153
153
  annotationArea?: AnnotationArea | AnnotationArea[];
154
+ /**
155
+ * 当图表开启透视功能或者指标组合的是否,是否开启维度联动功能
156
+ * 当hover 到某个维度值时,联动高亮其他图表中相同维度值的数据
157
+ */
158
+ dimensionLinkage?: DimensionLinkage;
154
159
  /**
155
160
  * @description 图表语言配置, 支持'zh-CN'与'en-US'两种语言, 另外可以调用 intl.setLocale('zh-CN') 方法设置语言
156
161
  * @default 'zh-CN'
@@ -1410,6 +1410,11 @@ export declare const zBarParallel: z.ZodObject<{
1410
1410
  areaLineDash: z.ZodOptional<z.ZodNullable<z.ZodArray<z.ZodNumber>>>;
1411
1411
  outerPadding: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodNumber>>>;
1412
1412
  }, z.core.$strip>]>>>;
1413
+ dimensionLinkage: z.ZodOptional<z.ZodNullable<z.ZodObject<{
1414
+ enable: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1415
+ showTooltip: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1416
+ showLabel: z.ZodOptional<z.ZodNullable<z.ZodBoolean>>;
1417
+ }, z.core.$strip>>>;
1413
1418
  locale: z.ZodOptional<z.ZodNullable<z.ZodDefault<z.ZodEnum<{
1414
1419
  "zh-CN": "zh-CN";
1415
1420
  "en-US": "en-US";