Skip to content

Commit e3178cb

Browse files
author
pipeline
committed
v20.4.44 is released
1 parent 431d2ca commit e3178cb

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

50 files changed

+277
-162
lines changed

components/buttons/CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,14 @@
22

33
## [Unreleased]
44

5+
## 20.4.44 (2023-01-18)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#I427994` - Provided the `htmlAttributes` support to the switch component.
12+
513
## 20.4.42 (2023-01-04)
614

715
### Checkbox

components/buttons/src/switch/switch.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ import { Switch } from '@syncfusion/ej2-buttons';
55

66

77

8-
export const inputs: string[] = ['checked','cssClass','disabled','enablePersistence','enableRtl','locale','name','offLabel','onLabel','value'];
8+
export const inputs: string[] = ['checked','cssClass','disabled','enablePersistence','enableRtl','htmlAttributes','locale','name','offLabel','onLabel','value'];
99
export const outputs: string[] = ['focus', 'blur', 'change','created','checkedChange'];
1010
export const twoWays: string[] = ['checked'];
1111

components/charts/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,15 @@
22

33
## [Unreleased]
44

5+
## 20.4.44 (2023-01-18)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I426511` - Chart cut off when the parent container width is less than the chart width has been fixed.
12+
- `#I427185` - The DateTimeCategory axis now correctly sorts data.
13+
514
## 20.4.43 (2023-01-10)
615

716
### Chart

components/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-angular-charts",
3-
"version": "20.4.42",
3+
"version": "20.4.43",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/src/accumulation-chart/annotations.directive.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -64,14 +64,14 @@ export class AccumulationAnnotationDirective extends ComplexBase<AccumulationAnn
6464
*/
6565
public verticalAlignment: any;
6666
/**
67-
* if set coordinateUnit as `Pixel` X specifies the axis value
68-
* else is specifies pixel or percentage of coordinate
67+
* if set coordinateUnit as `Pixel` X specifies the axis value.
68+
* else is specifies pixel or percentage of coordinate.
6969
* @default '0'
7070
*/
7171
public x: any;
7272
/**
73-
* if set coordinateUnit as `Pixel` Y specifies the axis value
74-
* else is specifies pixel or percentage of coordinate
73+
* if set coordinateUnit as `Pixel` Y specifies the axis value.
74+
* else is specifies pixel or percentage of coordinate.
7575
* @default '0'
7676
*/
7777
public y: any;

components/charts/src/accumulation-chart/series.directive.ts

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
5050
*/
5151
public dataSource: any;
5252
/**
53-
* options to customize the empty points in series
53+
* options to customize the empty points in series.
5454
*/
5555
public emptyPointSettings: any;
5656
/**
@@ -91,17 +91,17 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
9191
*/
9292
public gapRatio: any;
9393
/**
94-
* AccumulationSeries y values less than groupMode are combined into single slice named others
94+
* AccumulationSeries y values less than groupMode are combined into single slice named others.
9595
* @default Value
9696
*/
9797
public groupMode: any;
9898
/**
99-
* AccumulationSeries y values less than groupTo are combined into single slice named others
99+
* AccumulationSeries y values less than groupTo are combined into single slice named others.
100100
* @default null
101101
*/
102102
public groupTo: any;
103103
/**
104-
* Defines the height of the funnel/pyramid with respect to the chart area
104+
* Defines the height of the funnel/pyramid with respect to the chart area.
105105
* @default '80%'
106106
*/
107107
public height: any;
@@ -137,12 +137,12 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
137137
*/
138138
public name: any;
139139
/**
140-
* Defines the height of the funnel neck with respect to the chart area
140+
* Defines the height of the funnel neck with respect to the chart area.
141141
* @default '20%'
142142
*/
143143
public neckHeight: any;
144144
/**
145-
* Defines the width of the funnel neck with respect to the chart area
145+
* Defines the width of the funnel neck with respect to the chart area.
146146
* @default '20%'
147147
*/
148148
public neckWidth: any;
@@ -163,7 +163,7 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
163163
*/
164164
public pointColorMapping: any;
165165
/**
166-
* Defines how the values have to be reflected, whether through height/surface of the segments
166+
* Defines how the values have to be reflected, whether through height/surface of the segments.
167167
* @default 'Linear'
168168
*/
169169
public pyramidMode: any;
@@ -188,7 +188,7 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
188188
*/
189189
public startAngle: any;
190190
/**
191-
* The provided value will be considered as a Tooltip Mapping name
191+
* The provided value will be considered as a Tooltip Mapping name.
192192
* @default ''
193193
*/
194194
public tooltipMappingName: any;
@@ -198,7 +198,7 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
198198
*/
199199
public visible: any;
200200
/**
201-
* Defines the width of the funnel/pyramid with respect to the chart area
201+
* Defines the width of the funnel/pyramid with respect to the chart area.
202202
* @default '80%'
203203
*/
204204
public width: any;

components/charts/src/bullet-chart/ranges.directive.ts

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,17 +27,17 @@ export class BulletRangeDirective extends ComplexBase<BulletRangeDirective> {
2727

2828

2929
/**
30-
* Default value for qualitative range Color
30+
* Default value for qualitative range Color.
3131
* @default null
3232
*/
3333
public color: any;
3434
/**
35-
* Default value for qualitative range end value
35+
* Default value for qualitative range end value.
3636
* @default null
3737
*/
3838
public end: any;
3939
/**
40-
* Default value for qualitative range Color
40+
* Default value for qualitative range Color.
4141
* @default null
4242
*/
4343
public index: any;
@@ -47,7 +47,7 @@ export class BulletRangeDirective extends ComplexBase<BulletRangeDirective> {
4747
*/
4848
public legendImageUrl: any;
4949
/**
50-
* Default value for qualitative range name
50+
* Default value for qualitative range name.
5151
* @default null
5252
*/
5353
public name: any;

components/charts/src/chart/axes.directive.ts

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -49,7 +49,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
4949
*/
5050
public crossesAt: any;
5151
/**
52-
* Specifies axis name with which the axis line has to be crossed
52+
* Specifies axis name with which the axis line has to be crossed.
5353
* @default null
5454
*/
5555
public crossesInAxis: any;
@@ -138,7 +138,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
138138
*/
139139
public labelIntersectAction: any;
140140
/**
141-
* Specifies the labelPadding from axis
141+
* Specifies the labelPadding from axis.
142142
* @default 5
143143
*/
144144
public labelPadding: any;
@@ -221,7 +221,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
221221
*/
222222
public minorTicksPerInterval: any;
223223
/**
224-
* Specifies the multi level labels collection for the axis
224+
* Specifies the multi level labels collection for the axis.
225225
*/
226226
public multiLevelLabels: any;
227227
/**
@@ -236,7 +236,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
236236
*/
237237
public opposedPosition: any;
238238
/**
239-
* Specifies whether axis elements like axis labels, axis title, etc has to be crossed with axis line
239+
* Specifies whether axis elements like axis labels, axis title, etc has to be crossed with axis line.
240240
* @default true
241241
*/
242242
public placeNextToAxisLine: any;
@@ -281,7 +281,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
281281
*/
282282
public rowIndex: any;
283283
/**
284-
* Option to customize scrollbar with lazy loading
284+
* Option to customize scrollbar with lazy loading.
285285
*/
286286
public scrollbarSettings: any;
287287
/**
@@ -311,7 +311,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
311311
*/
312312
public startFromZero: any;
313313
/**
314-
* Specifies the stripLine collection for the axis
314+
* Specifies the stripLine collection for the axis.
315315
*/
316316
public stripLines: any;
317317
/**
@@ -332,7 +332,7 @@ export class AxisDirective extends ComplexBase<AxisDirective> {
332332
*/
333333
public title: any;
334334
/**
335-
* Specifies the titlePadding from axis label
335+
* Specifies the titlePadding from axis label.
336336
* @default 5
337337
*/
338338
public titlePadding: any;

components/charts/src/chart/categories.directive.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,7 +50,7 @@ export class CategoryDirective extends ComplexBase<CategoryDirective> {
5050
*/
5151
public customAttributes: any;
5252
/**
53-
* End value of the multi level labels
53+
* End value of the multi level labels.
5454
* @default null
5555
* @aspdefaultvalueignore
5656
*/
@@ -62,7 +62,7 @@ export class CategoryDirective extends ComplexBase<CategoryDirective> {
6262
*/
6363
public maximumTextWidth: any;
6464
/**
65-
* Start value of the multi level labels
65+
* Start value of the multi level labels.
6666
* @default null
6767
* @aspdefaultvalueignore
6868
*/

components/charts/src/chart/indicators.directive.ts

Lines changed: 18 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
2727

2828

2929
/**
30-
* Defines the type of the technical indicator
30+
* Defines the type of the technical indicator.
3131
* @default 'Sma'
3232
*/
3333
public type: any;
@@ -52,7 +52,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
5252
*/
5353
public colorName: any;
5454
/**
55-
* Defines the period, the price changes over which will define the %D value in stochastic indicators
55+
* Defines the period, the price changes over which will define the %D value in stochastic indicators.
5656
* @default 3
5757
*/
5858
public dPeriod: any;
@@ -73,12 +73,12 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
7373
*/
7474
public enableComplexProperty: any;
7575
/**
76-
* Sets the fast period to define the Macd line
76+
* Sets the fast period to define the Macd line.
7777
* @default 26
7878
*/
7979
public fastPeriod: any;
8080
/**
81-
* Defines the field to compare the current value with previous values
81+
* Defines the field to compare the current value with previous values.
8282
* @default 'Close'
8383
*/
8484
public field: any;
@@ -96,7 +96,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
9696
*/
9797
public high: any;
9898
/**
99-
* Defines the look back period, the price changes over which will define the %K value in stochastic indicators
99+
* Defines the look back period, the price changes over which will define the %K value in stochastic indicators.
100100
* @default 14
101101
*/
102102
public kPeriod: any;
@@ -107,21 +107,21 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
107107
*/
108108
public low: any;
109109
/**
110-
* Defines the appearance of lower line in technical indicators
110+
* Defines the appearance of lower line in technical indicators.
111111
*/
112112
public lowerLine: any;
113113
/**
114-
* Defines the appearance of the the MacdLine of Macd indicator
114+
* Defines the appearance of the the MacdLine of Macd indicator.
115115
* @default { color: '#ff9933', width: 2 }
116116
*/
117117
public macdLine: any;
118118
/**
119-
* Defines the color of the negative bars in Macd indicators
119+
* Defines the color of the negative bars in Macd indicators.
120120
* @default '#e74c3d'
121121
*/
122122
public macdNegativeColor: any;
123123
/**
124-
* Defines the color of the positive bars in Macd indicators
124+
* Defines the color of the positive bars in Macd indicators.
125125
* @default '#2ecd71'
126126
*/
127127
public macdPositiveColor: any;
@@ -137,22 +137,22 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
137137
*/
138138
public open: any;
139139
/**
140-
* Defines the over-bought(threshold) values. It is applicable for RSI and stochastic indicators
140+
* Defines the over-bought(threshold) values. It is applicable for RSI and stochastic indicators.
141141
* @default 80
142142
*/
143143
public overBought: any;
144144
/**
145-
* Defines the over-sold(threshold) values. It is applicable for RSI and stochastic indicators
145+
* Defines the over-sold(threshold) values. It is applicable for RSI and stochastic indicators.
146146
* @default 20
147147
*/
148148
public overSold: any;
149149
/**
150-
* Defines the period, the price changes over which will be considered to predict the trend
150+
* Defines the period, the price changes over which will be considered to predict the trend.
151151
* @default 14
152152
*/
153153
public period: any;
154154
/**
155-
* Defines the appearance of period line in technical indicators
155+
* Defines the appearance of period line in technical indicators.
156156
*/
157157
public periodLine: any;
158158
/**
@@ -175,27 +175,27 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
175175
*/
176176
public segments: any;
177177
/**
178-
* Defines the name of the series, the data of which has to be depicted as indicator
178+
* Defines the name of the series, the data of which has to be depicted as indicator.
179179
* @default ''
180180
*/
181181
public seriesName: any;
182182
/**
183-
* Enables/Disables the over-bought and over-sold regions
183+
* Enables/Disables the over-bought and over-sold regions.
184184
* @default true
185185
*/
186186
public showZones: any;
187187
/**
188-
* Sets the slow period to define the Macd line
188+
* Sets the slow period to define the Macd line.
189189
* @default 12
190190
*/
191191
public slowPeriod: any;
192192
/**
193-
* Sets the standard deviation values that helps to define the upper and lower bollinger bands
193+
* Sets the standard deviation values that helps to define the upper and lower bollinger bands.
194194
* @default 2
195195
*/
196196
public standardDeviation: any;
197197
/**
198-
* Defines the appearance of the upper line in technical indicators
198+
* Defines the appearance of the upper line in technical indicators.
199199
*/
200200
public upperLine: any;
201201
/**

0 commit comments

Comments
 (0)