impaktapps-ui-builder 1.0.276 → 1.0.277
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 -5
- 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 +2 -2
- package/src/impaktapps-ui-builder/builder/build/buildStackBarLineGraph.ts +2 -2
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -1
|
@@ -8182,7 +8182,7 @@ const buildPropertiesSection = function(type) {
|
|
|
8182
8182
|
getSelectField("xAxisType", "X-AxisType"),
|
|
8183
8183
|
getRadioInputField("bottomAxisAngle", "Bottom Axis Angled", ["YES", "No"]),
|
|
8184
8184
|
getInputField("leftMargin", "Left Margin"),
|
|
8185
|
-
getInputField("
|
|
8185
|
+
getInputField("xAxisLabelMinWidth", "X Axis Label Width"),
|
|
8186
8186
|
getInputField("yAxisTickCount", "Y Axis TickCount"),
|
|
8187
8187
|
getSelectField("xAxisFormatType", "X Axis Format Type"),
|
|
8188
8188
|
emptyBox$1("GraphEmpty1", { xs: 0, sm: 0, md: 4, lg: 6 }),
|
|
@@ -12958,8 +12958,8 @@ const buildAreaGraph = (config2, componentScope2) => {
|
|
|
12958
12958
|
if (config2.xAxisFormatType) {
|
|
12959
12959
|
AreaGraph.config.main.xAxisFormatType = config2.xAxisFormatType;
|
|
12960
12960
|
}
|
|
12961
|
-
if (config2.
|
|
12962
|
-
AreaGraph.config.main.
|
|
12961
|
+
if (config2.xAxisLabelMinWidth) {
|
|
12962
|
+
AreaGraph.config.main.xAxisLabelMinWidth = config2.xAxisLabelMinWidth;
|
|
12963
12963
|
}
|
|
12964
12964
|
if (config2.yAxisTickCount) {
|
|
12965
12965
|
AreaGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|
|
@@ -13014,8 +13014,8 @@ const buildStackBarLineGraph = (config2, componentScope2) => {
|
|
|
13014
13014
|
if (config2.pieArcColors) {
|
|
13015
13015
|
StackBarLineGraph.config.style.colorMap = createKeyValueMap(config2.pieArcColors);
|
|
13016
13016
|
}
|
|
13017
|
-
if (config2.
|
|
13018
|
-
StackBarLineGraph.config.main.
|
|
13017
|
+
if (config2.xAxisLabelMinWidth) {
|
|
13018
|
+
StackBarLineGraph.config.main.xAxisLabelMinWidth = config2.xAxisLabelMinWidth;
|
|
13019
13019
|
}
|
|
13020
13020
|
if (config2.yAxisTickCount) {
|
|
13021
13021
|
StackBarLineGraph.config.main.yAxisTickCount = config2.yAxisTickCount;
|