@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.es.js
CHANGED
|
@@ -4531,6 +4531,9 @@ const barProps = {
|
|
|
4531
4531
|
xAxisSplitLineShow: true,
|
|
4532
4532
|
xAxisSplitLineStyleColor: "#333",
|
|
4533
4533
|
xAxisLabelColor: "#333",
|
|
4534
|
+
xAxisLabelWidth: void 0,
|
|
4535
|
+
xAxisLabelRotate: 0,
|
|
4536
|
+
xAxisLabelOverflow: "none",
|
|
4534
4537
|
xAxisLineStyleColor: "#333",
|
|
4535
4538
|
xAxisTickShow: true,
|
|
4536
4539
|
yAxisSplitLineShow: true,
|
|
@@ -4684,7 +4687,11 @@ const _sfc_main$9 = defineComponent({
|
|
|
4684
4687
|
}
|
|
4685
4688
|
},
|
|
4686
4689
|
axisLabel: {
|
|
4687
|
-
color: props2.xAxisLabelColor
|
|
4690
|
+
color: props2.xAxisLabelColor,
|
|
4691
|
+
interval: 0,
|
|
4692
|
+
rotate: props2.xAxisLabelRotate,
|
|
4693
|
+
width: props2.xAxisLabelWidth,
|
|
4694
|
+
overflow: props2.xAxisLabelOverflow
|
|
4688
4695
|
},
|
|
4689
4696
|
axisLine: {
|
|
4690
4697
|
lineStyle: {
|