impaktapps-ui-builder 1.0.272-test.1 → 1.0.274
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/impaktapps-ui-builder.es.js +5 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +1 -1
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +2 -1
|
@@ -8171,6 +8171,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8171
8171
|
getInputField("subHeader", "Sub Header"),
|
|
8172
8172
|
getSelectField("graphType", "Graph Type"),
|
|
8173
8173
|
getInputField("leftLabel", "Left Label"),
|
|
8174
|
+
getInputField("rightLabel", "Right Label"),
|
|
8174
8175
|
getRadioInputField("disableLeftLabel", "Disable Left Label", ["YES", "No"]),
|
|
8175
8176
|
getInputField("bottomLabel", "Bottom Label"),
|
|
8176
8177
|
emptyBox$1("GraphEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 }),
|
|
@@ -8184,7 +8185,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8184
8185
|
getInputField("xAxisTickCount", "X Axis TickCount"),
|
|
8185
8186
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8186
8187
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8187
|
-
emptyBox$1("GraphEmpty1", { xs:
|
|
8188
|
+
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8188
8189
|
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label"),
|
|
8189
8190
|
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color")
|
|
8190
8191
|
];
|
|
@@ -13031,6 +13032,9 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13031
13032
|
if (config2.leftLabel) {
|
|
13032
13033
|
StackBarLineGraph.config.main.leftLabel = config2.leftLabel;
|
|
13033
13034
|
}
|
|
13035
|
+
if (config2.rightLabel) {
|
|
13036
|
+
StackBarLineGraph.config.main.rightLabel = config2.rightLabel;
|
|
13037
|
+
}
|
|
13034
13038
|
if (config2.disableLeftLabel) {
|
|
13035
13039
|
StackBarLineGraph.config.main.disableLeftLabel = config2.disableLeftLabel === "YES" ? true : false;
|
|
13036
13040
|
}
|