impaktapps-ui-builder 1.0.291 → 1.0.292
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 +7 -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/buildAreaGraph.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +3 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
|
@@ -8225,10 +8225,10 @@ const buildPropertiesSection = function(type) {
|
|
|
8225
8225
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8226
8226
|
getInputField("leftMargin", "Left Margin"),
|
|
8227
8227
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8228
|
+
getInputField("xAxisTickCount", "X Axis TickCount"),
|
|
8228
8229
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8229
8230
|
getInputField("growthRateKey", "Growth Rate Key"),
|
|
8230
8231
|
getInputField("tooltipUnit", "Tooltip Unit"),
|
|
8231
|
-
emptyBox$1("GraphEmpty1", { xs: 6, sm: 6, md: 4, lg: 3 }),
|
|
8232
8232
|
getArrayControlMultiField("legendLabels", "key", "value", "Key", "Label", "Configure Bar Labels"),
|
|
8233
8233
|
getArrayControlMultiField("pieArcColors", "key", "value", "Key", "Color", "Configure Bar Colors")
|
|
8234
8234
|
];
|
|
@@ -13099,6 +13099,9 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
13099
13099
|
if (config2.yAxisTickCount) {
|
|
13100
13100
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13101
13101
|
}
|
|
13102
|
+
if (config2.xAxisTickCount) {
|
|
13103
|
+
AreaGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13104
|
+
}
|
|
13102
13105
|
if (config2.xAxisValue) {
|
|
13103
13106
|
AreaGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13104
13107
|
}
|
|
@@ -13152,6 +13155,9 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13152
13155
|
if (config2.yAxisTickCount) {
|
|
13153
13156
|
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
13154
13157
|
}
|
|
13158
|
+
if (config2.xAxisTickCount) {
|
|
13159
|
+
StackBarLineGraph.config.main.xAxisTickCount = config2.xAxisTickCount;
|
|
13160
|
+
}
|
|
13155
13161
|
if (config2.xAxisValue) {
|
|
13156
13162
|
StackBarLineGraph.config.main.xAxisValue = config2.xAxisValue;
|
|
13157
13163
|
}
|