impaktapps-ui-builder 1.0.411 → 1.0.412
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 +9 -1
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +6 -6
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +6 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +3 -1
|
@@ -8205,7 +8205,9 @@ const buildPropertiesSection = function(type) {
|
|
|
8205
8205
|
getInputField("leftMargin", "Left Margin"),
|
|
8206
8206
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8207
8207
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8208
|
-
|
|
8208
|
+
getInputField("growthRateKey", "Growth Rate Key (StackBarLineGraph)"),
|
|
8209
|
+
getInputField("tooltipUnit", "Tooltip Unit"),
|
|
8210
|
+
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8209
8211
|
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label"),
|
|
8210
8212
|
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color")
|
|
8211
8213
|
];
|
|
@@ -13104,6 +13106,12 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13104
13106
|
if (config2.disableLeftLabel) {
|
|
13105
13107
|
StackBarLineGraph.config.main.disableLeftLabel = config2.disableLeftLabel === "YES" ? true : false;
|
|
13106
13108
|
}
|
|
13109
|
+
if (config2.growthRateKey) {
|
|
13110
|
+
StackBarLineGraph.config.main.growthRateKey = config2.growthRateKey;
|
|
13111
|
+
}
|
|
13112
|
+
if (config2.tooltipUnit) {
|
|
13113
|
+
StackBarLineGraph.config.main.tooltipUnit = config2.tooltipUnit;
|
|
13114
|
+
}
|
|
13107
13115
|
if (config2.leftMargin) {
|
|
13108
13116
|
StackBarLineGraph.config.style.labelStyle.margin = {
|
|
13109
13117
|
left: config2.leftMargin
|