Skip to content

Commit bcfc80c

Browse files
author
pipeline
committed
v21.2.3 is released
1 parent 23544cf commit bcfc80c

Some content is hidden

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

43 files changed

+253
-31
lines changed

components/buttons/CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## 21.1.41 (2023-04-18)
5+
## 21.2.3 (2023-05-03)
6+
7+
### Switch
8+
9+
#### Bug Fixes
10+
11+
- `#I456259` - provided the `role` attribute support to `htmlAttributes` property of switch component.
12+
13+
## 21.1.37 (2023-03-29)
614

715
### Checkbox
816

components/buttons/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-buttons",
3-
"version": "18.58.0",
3+
"version": "21.1.37",
44
"description": "A package of feature-rich Essential JS 2 components such as Button, CheckBox, RadioButton and Switch. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/calendars/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-calendars",
3-
"version": "21.1.38",
3+
"version": "21.1.41",
44
"description": "A complete package of date or time components with built-in features such as date formatting, inline editing, multiple (range) selection, range restriction, month and year selection, strict mode, and globalization. for Angular",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/charts/CHANGELOG.md

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

33
## [Unreleased]
44

5+
## 21.2.3 (2023-05-03)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#I452421` - Fixed an issue where a dotted line was showing up for line charts while exporting through PhantomJS.
12+
- `#I451960` - Resolved an issue where the datalabel border was getting added while exporting using PhantomJS.
13+
- `#I452091` - Resolved an issue where line charts were not being rendered while exporting using PhantomJS.
14+
- `#I455206` - Fixed an issue where the DataLabel was not visible despite there being enough space to display it.
15+
- `#I452148` - `MultipleRows` in labelIntersectAction property is now working properly.
16+
- `#I456533` - Fixed an issue where the tick line was visible even if there was no axis label for it.
17+
- `#F181431` - Fixed the issue where chart width was not changing on print.
18+
19+
#### New Features
20+
21+
- `#I451521` - Provided support for dashArray in series border for Pie chart.
22+
- `#I360879` - Provided support to disable marker explode in shared tooltip.
23+
524
## 21.1.41 (2023-04-18)
625

726
### 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": "21.1.39",
3+
"version": "21.1.41",
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/series.directive.ts

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ import { ComplexBase, ArrayBase, setValue } from '@syncfusion/ej2-angular-base';
33
import { Template } from '@syncfusion/ej2-angular-base';
44

55

6-
let input: string[] = ['animation', 'border', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'gapRatio', 'groupMode', 'groupTo', 'height', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'neckHeight', 'neckWidth', 'opacity', 'palettes', 'pointColorMapping', 'pyramidMode', 'query', 'radius', 'selectionStyle', 'startAngle', 'tooltipMappingName', 'type', 'visible', 'width', 'xName', 'yName'];
6+
let input: string[] = ['animation', 'border', 'dashArray', 'dataLabel', 'dataSource', 'emptyPointSettings', 'enableTooltip', 'endAngle', 'explode', 'explodeAll', 'explodeIndex', 'explodeOffset', 'gapRatio', 'groupMode', 'groupTo', 'height', 'innerRadius', 'legendImageUrl', 'legendShape', 'name', 'neckHeight', 'neckWidth', 'opacity', 'palettes', 'pointColorMapping', 'pyramidMode', 'query', 'radius', 'selectionStyle', 'startAngle', 'tooltipMappingName', 'type', 'visible', 'width', 'xName', 'yName'];
77
let outputs: string[] = [];
88
/**
99
* AccumulationSeries Directive
@@ -39,6 +39,11 @@ export class AccumulationSeriesDirective extends ComplexBase<AccumulationSeriesD
3939
* Options for customizing the border of the series.
4040
*/
4141
public border: any;
42+
/**
43+
* Defines the pattern of dashes and gaps to the series border.
44+
* @default '0'
45+
*/
46+
public dashArray: any;
4247
/**
4348
* The data label for the series.
4449
*/

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ export class IndicatorDirective extends ComplexBase<IndicatorDirective> {
5858
public dPeriod: any;
5959
/**
6060
* Defines the pattern of dashes and gaps to stroke the lines in `Line` type series.
61-
* @default '0'
61+
* @default ''
6262
*/
6363
public dashArray: any;
6464
/**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -141,7 +141,7 @@ export class SeriesDirective extends ComplexBase<SeriesDirective> {
141141
public cornerRadius: any;
142142
/**
143143
* Defines the pattern of dashes and gaps to stroke the lines in `Line` type series.
144-
* @default '0'
144+
* @default ''
145145
*/
146146
public dashArray: any;
147147
/**

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

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ export class TrendlineDirective extends ComplexBase<TrendlineDirective> {
4646
public backwardForecast: any;
4747
/**
4848
* Defines the pattern of dashes and gaps to stroke.
49-
* @default '0'
49+
* @default ''
5050
*/
5151
public dashArray: any;
5252
/**

components/charts/src/stock-chart/trendlines.directive.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -47,7 +47,7 @@ export class StockChartTrendlineDirective extends ComplexBase<StockChartTrendlin
4747
public backwardForecast: any;
4848
/**
4949
* Defines the pattern of dashes and gaps to stroke.
50-
* @default '0'
50+
* @default ''
5151
*/
5252
public dashArray: any;
5353
/**

0 commit comments

Comments
 (0)