@ecan-bi/datav 1.1.9 → 1.1.10
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 +7 -3
- package/dist/index.es.js.map +1 -1
- package/dist/index.umd.js +7 -3
- package/dist/index.umd.js.map +1 -1
- package/dist/style.css +12 -1
- package/package.json +1 -1
- package/types/graph/bar/Bar.vue.d.ts +56 -0
- package/types/graph/bar/index.d.ts +56 -0
- package/types/graph/bar/props.d.ts +30 -0
package/dist/index.es.js
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
/*! @ecan-bi/datav@1.1.
|
|
1
|
+
/*! @ecan-bi/datav@1.1.10 */
|
|
2
2
|
var _a, _b, _c, _d;
|
|
3
3
|
import { watch, inject, computed, unref, watchEffect, defineComponent, shallowRef, toRefs, onMounted, onUnmounted, h, nextTick, createVNode, resolveComponent, openBlock, createElementBlock, createBlock, renderSlot, withCtx, ref, normalizeStyle, createCommentVNode, provide, onBeforeUnmount, toDisplayString, Fragment, renderList, createElementVNode, normalizeClass, pushScopeId, popScopeId, createSlots, resolveDynamicComponent, mergeProps, withModifiers, reactive, createTextVNode, withDirectives, vShow } from "vue";
|
|
4
4
|
import { throttle, init, use, registerMap } from "echarts/core";
|
|
@@ -4925,7 +4925,9 @@ const barProps = {
|
|
|
4925
4925
|
yAxisInverse: false,
|
|
4926
4926
|
isStack: false,
|
|
4927
4927
|
labelShow: false,
|
|
4928
|
-
labelFontSize: "12px"
|
|
4928
|
+
labelFontSize: "12px",
|
|
4929
|
+
labelPosition: "inside",
|
|
4930
|
+
labelColor: ""
|
|
4929
4931
|
};
|
|
4930
4932
|
const barComponentProps = transformToComponentProps(barProps);
|
|
4931
4933
|
const barEvents = ["refreshData", "click"];
|
|
@@ -4969,7 +4971,9 @@ const _sfc_main$a = defineComponent({
|
|
|
4969
4971
|
}
|
|
4970
4972
|
item.label = {
|
|
4971
4973
|
show: props2.labelShow,
|
|
4972
|
-
fontSize: props2.labelFontSize
|
|
4974
|
+
fontSize: props2.labelFontSize,
|
|
4975
|
+
position: props2.labelPosition,
|
|
4976
|
+
color: props2.labelColor
|
|
4973
4977
|
};
|
|
4974
4978
|
series2.push(item);
|
|
4975
4979
|
}
|