@ecan-bi/chart-config-panel 1.0.6 → 1.0.8
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/vue2/index.cjs +3 -3
- package/dist/vue2/index.mjs +386 -374
- package/dist/vue3/index.cjs +6 -6
- package/dist/vue3/index.mjs +14 -2
- package/package.json +1 -1
package/dist/vue3/index.mjs
CHANGED
|
@@ -227,6 +227,7 @@ const kr = [
|
|
|
227
227
|
props: [
|
|
228
228
|
"tooltipTrigger",
|
|
229
229
|
"tooltipFormatter",
|
|
230
|
+
"tooltipFontSize",
|
|
230
231
|
"tooltipTextStyleColor",
|
|
231
232
|
"tooltipBackgroundColor",
|
|
232
233
|
"tooltipRequestData",
|
|
@@ -718,6 +719,7 @@ const kr = [
|
|
|
718
719
|
yAxisMaxValue: null,
|
|
719
720
|
xAxisLabelShow: !0,
|
|
720
721
|
tooltipTextStyleColor: "",
|
|
722
|
+
tooltipFontSize: "12px",
|
|
721
723
|
noDataTip: !1,
|
|
722
724
|
tipText: "暂无数据",
|
|
723
725
|
tipTextColor: "#000000",
|
|
@@ -875,7 +877,8 @@ const kr = [
|
|
|
875
877
|
noDataTip: !1,
|
|
876
878
|
tipText: "暂无数据",
|
|
877
879
|
tipTextColor: "#000000",
|
|
878
|
-
tipTextFontSize: "18px"
|
|
880
|
+
tipTextFontSize: "18px",
|
|
881
|
+
tooltipFontSize: "12px"
|
|
879
882
|
},
|
|
880
883
|
{
|
|
881
884
|
id: "",
|
|
@@ -1168,7 +1171,8 @@ const kr = [
|
|
|
1168
1171
|
labelColor: "",
|
|
1169
1172
|
labelWidth: 100,
|
|
1170
1173
|
labelOverflow: "none",
|
|
1171
|
-
labelFormatter: "{c}"
|
|
1174
|
+
labelFormatter: "{c}",
|
|
1175
|
+
tooltipFontSize: "12px"
|
|
1172
1176
|
},
|
|
1173
1177
|
{
|
|
1174
1178
|
id: "",
|
|
@@ -6167,6 +6171,14 @@ const kr = [
|
|
|
6167
6171
|
label: "条件设置",
|
|
6168
6172
|
component: "visual-size-config",
|
|
6169
6173
|
layout: "vertical"
|
|
6174
|
+
},
|
|
6175
|
+
tooltipFontSize: {
|
|
6176
|
+
label: "字号",
|
|
6177
|
+
component: "input-number",
|
|
6178
|
+
props: {
|
|
6179
|
+
suffix: "px",
|
|
6180
|
+
min: 1
|
|
6181
|
+
}
|
|
6170
6182
|
}
|
|
6171
6183
|
};
|
|
6172
6184
|
const le = (e, t) => {
|