@ecan-bi/datav 1.0.68 → 1.0.69
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.es.js +8 -1
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +8 -1
- package/dist/index.umd.js.map +1 -1
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +94 -0
- package/types/graph/bar/index.d.ts +94 -0
- package/types/graph/bar/props.d.ts +45 -0
package/dist/index.umd.js
CHANGED
|
@@ -4537,6 +4537,9 @@
|
|
|
4537
4537
|
xAxisSplitLineShow: true,
|
|
4538
4538
|
xAxisSplitLineStyleColor: "#333",
|
|
4539
4539
|
xAxisLabelColor: "#333",
|
|
4540
|
+
xAxisLabelWidth: void 0,
|
|
4541
|
+
xAxisLabelRotate: 0,
|
|
4542
|
+
xAxisLabelOverflow: "none",
|
|
4540
4543
|
xAxisLineStyleColor: "#333",
|
|
4541
4544
|
xAxisTickShow: true,
|
|
4542
4545
|
yAxisSplitLineShow: true,
|
|
@@ -4690,7 +4693,11 @@
|
|
|
4690
4693
|
}
|
|
4691
4694
|
},
|
|
4692
4695
|
axisLabel: {
|
|
4693
|
-
color: props2.xAxisLabelColor
|
|
4696
|
+
color: props2.xAxisLabelColor,
|
|
4697
|
+
interval: 0,
|
|
4698
|
+
rotate: props2.xAxisLabelRotate,
|
|
4699
|
+
width: props2.xAxisLabelWidth,
|
|
4700
|
+
overflow: props2.xAxisLabelOverflow
|
|
4694
4701
|
},
|
|
4695
4702
|
axisLine: {
|
|
4696
4703
|
lineStyle: {
|