Skip to content

Commit 3c59af6

Browse files
author
pipeline
committed
v26.2.14 is released
1 parent 4380de5 commit 3c59af6

File tree

209 files changed

+4697
-990
lines changed

Some content is hidden

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

209 files changed

+4697
-990
lines changed

controls/barcodegenerator/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.13 (2024-09-05)
5+
## 26.2.14 (2024-09-10)
66

77
### Barcode
88

controls/buttons/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.13 (2024-09-05)
5+
## 26.2.14 (2024-09-10)
66

77
### Switch
88

controls/calendars/CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 26.2.13 (2024-09-05)
5+
## 26.2.14 (2024-09-10)
66

77
### DateTimePicker
88

controls/charts/CHANGELOG.md

+9-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,15 @@
22

33
## [Unreleased]
44

5-
## 26.2.13 (2024-09-05)
5+
## 26.2.14 (2024-09-10)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#F194171` - Now, the first and last points are rendered properly in the bar chart when using the category axis.
12+
13+
## 26.2.12 (2024-09-03)
614

715
### Chart
816

controls/charts/node_modules/@types/node/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/node_modules/aws-sdk/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/node_modules/axios/README.md

+4-3
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/node_modules/picocolors/README.md

+158-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/package.json

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

controls/charts/spec/chart/axis/date-time-category-axis.spec.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -222,7 +222,7 @@ describe('Chart Control', () => {
222222
svg = document.getElementById('container_ChartAreaBorder');
223223
let label1: any = document.getElementById('containerAxisLabels0').childNodes[0];
224224
let label2: any = document.getElementById('containerAxisLabels0').childNodes[5];
225-
expect(parseInt(label1.getAttribute('y'))).toEqual((parseInt(svg.getAttribute('y')) + parseInt(svg.getAttribute('height'))));
225+
expect(parseInt(label1.getAttribute('y'))).toEqual((361));
226226
// expect(+label2.getAttribute('y')).toEqual(+svg.getAttribute('y'));
227227
done();
228228
};

controls/charts/src/chart/axis/category-axis.ts

+1-1
Original file line numberDiff line numberDiff line change
@@ -73,7 +73,7 @@ export class Category extends NiceInterval {
7373
public applyRangePadding(axis: Axis, size: Size): void {
7474
let isColumn: boolean;
7575
axis.series.forEach((element: Series) => {
76-
if (!isColumn) { isColumn = element.type.indexOf('Column') > -1 && !(axis.zoomFactor < 1 || axis.zoomPosition > 0) && isNullOrUndefined(axis.minimum) && isNullOrUndefined(axis.maximum); }
76+
if (!isColumn) { isColumn = (element.type.indexOf('Column') > -1 || element.type.indexOf('Bar') > -1) && !(axis.zoomFactor < 1 || axis.zoomPosition > 0) && isNullOrUndefined(axis.minimum) && isNullOrUndefined(axis.maximum); }
7777
});
7878
const ticks: number = ((axis.labelPlacement === 'BetweenTicks' || isColumn) && !this.chart.stockChart && this.chart.chartAreaType !== 'PolarRadar') ? 0.5 : 0;
7979
if (ticks > 0) {

controls/data/node_modules/@types/node/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/data/node_modules/aws-sdk/README.md

+1-1
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)