@nebula.js/sn-combo-chart 1.24.0 → 1.25.0

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.
@@ -658,6 +658,6 @@ The imageComponents objects are used to define the images displayed by the custo
658
658
  **Kind**: global typedef
659
659
  <a name="Component"></a>
660
660
 
661
- ## Component : [<code>Line</code>](#Line) \| [<code>Bar</code>](#Bar)
661
+ ## Component : [<code>Line</code>](#Line) \| [<code>Bar</code>](#Bar) \| [<code>Axis</code>](#Axis) \| [<code>Legend</code>](#Legend)
662
662
 
663
663
  **Kind**: global typedef
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "name": "@nebula.js/sn-combo-chart:plugins",
5
5
  "description": "Combo chart plugins API definitions",
6
- "version": "1.24.0",
6
+ "version": "1.25.0",
7
7
  "license": "MIT",
8
8
  "stability": "experimental",
9
9
  "x-qlik-visibility": "public"
@@ -3,7 +3,7 @@
3
3
  "info": {
4
4
  "name": "@nebula.js/sn-combo-chart:properties",
5
5
  "description": "Combo chart generic object definition",
6
- "version": "1.24.0",
6
+ "version": "1.25.0",
7
7
  "license": "MIT",
8
8
  "stability": "stable",
9
9
  "x-qlik-visibility": "public"
@@ -653,9 +653,35 @@
653
653
  ]
654
654
  }
655
655
  },
656
+ "Axis": {
657
+ "kind": "object",
658
+ "entries": {
659
+ "axis": {
660
+ "type": "#/definitions/AxisStyling"
661
+ },
662
+ "key": {
663
+ "description": "This should be set to `\"axis\"` (Determines which component the settings apply to).",
664
+ "type": "string"
665
+ }
666
+ }
667
+ },
668
+ "AxisStyling": {
669
+ "kind": "object",
670
+ "entries": {
671
+ "label": {
672
+ "type": "#/definitions/LabelNameStyling"
673
+ },
674
+ "title": {
675
+ "type": "#/definitions/FontStyling"
676
+ }
677
+ }
678
+ },
656
679
  "Bar": {
657
680
  "kind": "object",
658
681
  "entries": {
682
+ "bar": {
683
+ "type": "#/definitions/ChartStyling"
684
+ },
659
685
  "key": {
660
686
  "description": "This should be set to `\"bar\"` (Determines which component the settings apply to).",
661
687
  "type": "string"
@@ -700,6 +726,15 @@
700
726
  }
701
727
  }
702
728
  },
729
+ "ChartStyling": {
730
+ "kind": "object",
731
+ "entries": {
732
+ "label": {
733
+ "description": "Bar labels if bar and data point labels if line.",
734
+ "type": "#/definitions/LabelValueStyling"
735
+ }
736
+ }
737
+ },
703
738
  "ColorAttributes": {
704
739
  "description": "Extends `NxAttrExprDef`, see Engine API: `NxAttrExprDef`.",
705
740
  "extends": [
@@ -725,6 +760,12 @@
725
760
  },
726
761
  {
727
762
  "type": "#/definitions/Bar"
763
+ },
764
+ {
765
+ "type": "#/definitions/Axis"
766
+ },
767
+ {
768
+ "type": "#/definitions/Legend"
728
769
  }
729
770
  ]
730
771
  }
@@ -888,6 +929,20 @@
888
929
  }
889
930
  }
890
931
  },
932
+ "FontStyling": {
933
+ "kind": "object",
934
+ "entries": {
935
+ "color": {
936
+ "type": "#/definitions/paletteColor"
937
+ },
938
+ "fontFamily": {
939
+ "type": "string"
940
+ },
941
+ "fontSize": {
942
+ "type": "string"
943
+ }
944
+ }
945
+ },
891
946
  "ImageComponent": {
892
947
  "description": "Image component information structure.",
893
948
  "kind": "object",
@@ -1017,6 +1072,45 @@
1017
1072
  }
1018
1073
  }
1019
1074
  },
1075
+ "LabelNameStyling": {
1076
+ "kind": "object",
1077
+ "entries": {
1078
+ "name": {
1079
+ "type": "#/definitions/FontStyling"
1080
+ }
1081
+ }
1082
+ },
1083
+ "LabelValueStyling": {
1084
+ "kind": "object",
1085
+ "entries": {
1086
+ "value": {
1087
+ "type": "#/definitions/FontStyling"
1088
+ }
1089
+ }
1090
+ },
1091
+ "Legend": {
1092
+ "kind": "object",
1093
+ "entries": {
1094
+ "key": {
1095
+ "description": "This should be set to `\"legend\"` (Determines which component the settings apply to).",
1096
+ "type": "string"
1097
+ },
1098
+ "legend": {
1099
+ "type": "#/definitions/LegendStyling"
1100
+ }
1101
+ }
1102
+ },
1103
+ "LegendStyling": {
1104
+ "kind": "object",
1105
+ "entries": {
1106
+ "label": {
1107
+ "type": "#/definitions/LabelNameStyling"
1108
+ },
1109
+ "title": {
1110
+ "type": "#/definitions/FontStyling"
1111
+ }
1112
+ }
1113
+ },
1020
1114
  "Line": {
1021
1115
  "kind": "object",
1022
1116
  "entries": {
@@ -1024,6 +1118,9 @@
1024
1118
  "description": "This should be set to `\"line\"` (Determines which component the settings apply to).",
1025
1119
  "type": "string"
1026
1120
  },
1121
+ "line": {
1122
+ "type": "#/definitions/ChartStyling"
1123
+ },
1027
1124
  "style": {
1028
1125
  "type": "#/definitions/LineStyling"
1029
1126
  }