impaktapps-ui-builder 1.0.211 → 1.0.213
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.
|
@@ -12815,6 +12815,14 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
12815
12815
|
if (config2.leftLabel) {
|
|
12816
12816
|
AreaGraph.config.main.leftLabel = config2.leftLabel;
|
|
12817
12817
|
}
|
|
12818
|
+
if (config2.disableLeftLabel) {
|
|
12819
|
+
AreaGraph.config.main.disableLeftLabel = config2.disableLeftLabel === "YES" ? true : false;
|
|
12820
|
+
}
|
|
12821
|
+
if (config2.leftMargin) {
|
|
12822
|
+
AreaGraph.config.style.labelStyle.margin = {
|
|
12823
|
+
left: config2.leftMargin
|
|
12824
|
+
};
|
|
12825
|
+
}
|
|
12818
12826
|
return AreaGraph;
|
|
12819
12827
|
};
|
|
12820
12828
|
const cameraUiSchema = {
|