impaktapps-ui-builder 1.0.125-testL.10 → 1.0.125-testL.11
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 +4 -0
- package/dist/impaktapps-ui-builder.es.js.map +1 -1
- package/dist/impaktapps-ui-builder.umd.js +4 -4
- package/dist/impaktapps-ui-builder.umd.js.map +1 -1
- package/package.json +1 -1
- package/src/impaktapps-ui-builder/builder/build/buildHorizontalBarGraph.ts +4 -0
- package/src/impaktapps-ui-builder/builder/build/uischema/buildPropertiesSection.ts +1 -0
|
@@ -7833,6 +7833,7 @@ const buildPropertiesSection = function(type) {
|
|
|
7833
7833
|
getSelectField("graphType", "Graph Type"),
|
|
7834
7834
|
getInputField("leftLabel", "Left Label"),
|
|
7835
7835
|
getInputField("bottomLabel", "Bottom Label"),
|
|
7836
|
+
getRadioInputField("axisDirection", "Axis Direction", ["Left", "Right"]),
|
|
7836
7837
|
emptyBox$1("GraphEmpty1", { xs: 6, sm: 0, md: 0, lg: 0 }),
|
|
7837
7838
|
getRadioInputField("legendHide", "Legend Hide", ["YES", "No"]),
|
|
7838
7839
|
getInputField("yAxisValue", "Y-AxisValue"),
|
|
@@ -10754,6 +10755,9 @@ const buildHorizontalBarGraph = (config2, componentScope2) => {
|
|
|
10754
10755
|
if (config2.leftLabel) {
|
|
10755
10756
|
horizontalBarGraph.config.main.leftLabel = config2.leftLabel;
|
|
10756
10757
|
}
|
|
10758
|
+
if (config2.axisDirection) {
|
|
10759
|
+
horizontalBarGraph.config.main.axisDirection = config2.axisDirection === "Right" ? "right" : "left";
|
|
10760
|
+
}
|
|
10757
10761
|
return horizontalBarGraph;
|
|
10758
10762
|
};
|
|
10759
10763
|
var SpeedoMeter = {
|