@gisce/react-ooui 1.1.37 → 1.1.38
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/react-ooui.es.js +18 -1
- package/dist/react-ooui.es.js.map +1 -1
- package/dist/react-ooui.umd.js +1 -1
- package/dist/react-ooui.umd.js.map +1 -1
- package/dist/widgets/views/Graph/GraphChart.d.ts.map +1 -1
- package/dist/widgets/views/Graph/GraphDefaults.d.ts +10 -0
- package/dist/widgets/views/Graph/GraphDefaults.d.ts.map +1 -1
- package/package.json +1 -1
- package/src/widgets/views/Graph/GraphChart.tsx +6 -1
- package/src/widgets/views/Graph/GraphDefaults.ts +18 -0
package/dist/react-ooui.es.js
CHANGED
|
@@ -18893,6 +18893,13 @@ const formatter = (e) => (t) => {
|
|
|
18893
18893
|
xAxis: {
|
|
18894
18894
|
tickCount: 5
|
|
18895
18895
|
},
|
|
18896
|
+
yAxis: {
|
|
18897
|
+
label: {
|
|
18898
|
+
formatter: (e) => e.toLocaleString("es-ES", {
|
|
18899
|
+
useGrouping: !0
|
|
18900
|
+
})
|
|
18901
|
+
}
|
|
18902
|
+
},
|
|
18896
18903
|
legend: {
|
|
18897
18904
|
maxWidthRatio: 0.5,
|
|
18898
18905
|
maxItemWidth: 1e3
|
|
@@ -18935,6 +18942,13 @@ const formatter = (e) => (t) => {
|
|
|
18935
18942
|
tooltip: {
|
|
18936
18943
|
formatter: formatter("barGrouped")
|
|
18937
18944
|
},
|
|
18945
|
+
yAxis: {
|
|
18946
|
+
label: {
|
|
18947
|
+
formatter: (e) => e.toLocaleString("es-ES", {
|
|
18948
|
+
useGrouping: !0
|
|
18949
|
+
})
|
|
18950
|
+
}
|
|
18951
|
+
},
|
|
18938
18952
|
label: {
|
|
18939
18953
|
position: "middle",
|
|
18940
18954
|
layout: [
|
|
@@ -19073,6 +19087,7 @@ const types = {
|
|
|
19073
19087
|
bar: Column,
|
|
19074
19088
|
pie: Pie
|
|
19075
19089
|
}, GraphChart = (e) => {
|
|
19090
|
+
var v;
|
|
19076
19091
|
const {
|
|
19077
19092
|
model: t,
|
|
19078
19093
|
domain: r,
|
|
@@ -19123,7 +19138,9 @@ const types = {
|
|
|
19123
19138
|
style: {
|
|
19124
19139
|
textAlign: "right"
|
|
19125
19140
|
},
|
|
19126
|
-
children: `${u("totalRegisters")} ${p == null ? void 0 : p.length
|
|
19141
|
+
children: `${u("totalRegisters")} ${(v = p == null ? void 0 : p.length) == null ? void 0 : v.toLocaleString("es-ES", {
|
|
19142
|
+
useGrouping: !0
|
|
19143
|
+
})}`
|
|
19127
19144
|
}), /* @__PURE__ */ jsx(b, {
|
|
19128
19145
|
...getGraphProps({
|
|
19129
19146
|
type: f,
|