@mozaic-ds/chart 0.1.0-beta.32 → 0.1.0-beta.33
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/mozaic-chart.js
CHANGED
|
@@ -9398,6 +9398,10 @@ const tu = { class: "container" }, eu = { class: "main" }, iu = /* @__PURE__ */
|
|
|
9398
9398
|
horizontalChart: {
|
|
9399
9399
|
type: Boolean,
|
|
9400
9400
|
default: !1
|
|
9401
|
+
},
|
|
9402
|
+
displayDataSetsTicksLabels: {
|
|
9403
|
+
type: Boolean,
|
|
9404
|
+
default: !0
|
|
9401
9405
|
}
|
|
9402
9406
|
},
|
|
9403
9407
|
setup(i) {
|
|
@@ -9508,7 +9512,7 @@ const tu = { class: "container" }, eu = { class: "main" }, iu = /* @__PURE__ */
|
|
|
9508
9512
|
display: t.xAxisTitle !== null,
|
|
9509
9513
|
text: t.xAxisTitle
|
|
9510
9514
|
},
|
|
9511
|
-
ticks: t.horizontalChart ? A() : {}
|
|
9515
|
+
ticks: t.horizontalChart ? A() : { display: t.displayDataSetsTicksLabels }
|
|
9512
9516
|
},
|
|
9513
9517
|
y: {
|
|
9514
9518
|
stacked: t.stacked,
|
|
@@ -9516,7 +9520,7 @@ const tu = { class: "container" }, eu = { class: "main" }, iu = /* @__PURE__ */
|
|
|
9516
9520
|
display: t.yAxisTitle !== null,
|
|
9517
9521
|
text: t.yAxisTitle
|
|
9518
9522
|
},
|
|
9519
|
-
ticks: t.horizontalChart ? {} : A()
|
|
9523
|
+
ticks: t.horizontalChart ? { display: t.displayDataSetsTicksLabels } : A()
|
|
9520
9524
|
}
|
|
9521
9525
|
},
|
|
9522
9526
|
indexAxis: t.horizontalChart ? "y" : "x"
|
|
@@ -9570,7 +9574,7 @@ const ye = (i, t) => {
|
|
|
9570
9574
|
for (const [n, s] of t)
|
|
9571
9575
|
e[n] = s;
|
|
9572
9576
|
return e;
|
|
9573
|
-
}, gn = /* @__PURE__ */ ye(iu, [["__scopeId", "data-v-
|
|
9577
|
+
}, gn = /* @__PURE__ */ ye(iu, [["__scopeId", "data-v-27171be8"]]);
|
|
9574
9578
|
gn.install = (i) => {
|
|
9575
9579
|
i.component("BarChart", gn);
|
|
9576
9580
|
};
|