@fto-consult/expo-ui 2.24.3 → 2.24.4
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/package.json
CHANGED
|
@@ -1722,11 +1722,11 @@ export default class CommonDatagridComponent extends AppComponent {
|
|
|
1722
1722
|
const xLabels = chartOptions.xaxis.labels = defaultObj(chartOptions.xaxis.labels);
|
|
1723
1723
|
xLabels.style = defaultObj(xLabels.style)
|
|
1724
1724
|
xLabels.style.colors = (Array.isArray(xLabels.style.colors) && xLabels.style.colors.length || theme.Colors.isValid(xLabels.style.colors)) ? xLabels.style.colors : labelColor;
|
|
1725
|
-
chartOptions.yaxis = extendObj(true,{},{type: 'category'},chartProps.yaxis);
|
|
1726
1725
|
} else {
|
|
1727
1726
|
delete chartOptions.xaxis;
|
|
1728
1727
|
//delete chartOptions.yaxis;
|
|
1729
1728
|
}
|
|
1729
|
+
chartOptions.yaxis = extendObj(true,{},{type: 'category'},chartProps.yaxis);
|
|
1730
1730
|
const yLabels = chartOptions.yaxis.labels = defaultObj(chartOptions.yaxis.labels);
|
|
1731
1731
|
yLabels.style = defaultObj(yLabels.style)
|
|
1732
1732
|
yLabels.style.colors = (Array.isArray(yLabels.style.colors) && yLabels.style.colors.length || theme.Colors.isValid(yLabels.style.colors)) ? yLabels.style.colors : labelColor;
|