Skip to content

Commit

Permalink
v26.2.14 is released
Browse files Browse the repository at this point in the history
  • Loading branch information
pipeline committed Sep 10, 2024
1 parent 4380de5 commit 3c59af6
Show file tree
Hide file tree
Showing 209 changed files with 4,697 additions and 990 deletions.
2 changes: 1 addition & 1 deletion controls/barcodegenerator/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 26.2.13 (2024-09-05)
## 26.2.14 (2024-09-10)

### Barcode

Expand Down
2 changes: 1 addition & 1 deletion controls/buttons/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 26.2.13 (2024-09-05)
## 26.2.14 (2024-09-10)

### Switch

Expand Down
2 changes: 1 addition & 1 deletion controls/calendars/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

## [Unreleased]

## 26.2.13 (2024-09-05)
## 26.2.14 (2024-09-10)

### DateTimePicker

Expand Down
10 changes: 9 additions & 1 deletion controls/charts/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,15 @@

## [Unreleased]

## 26.2.13 (2024-09-05)
## 26.2.14 (2024-09-10)

### Chart

#### Bug Fixes

- `#F194171` - Now, the first and last points are rendered properly in the bar chart when using the category axis.

## 26.2.12 (2024-09-03)

### Chart

Expand Down
2 changes: 1 addition & 1 deletion controls/charts/node_modules/@types/node/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion controls/charts/node_modules/aws-sdk/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

7 changes: 4 additions & 3 deletions controls/charts/node_modules/axios/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

160 changes: 158 additions & 2 deletions controls/charts/node_modules/picocolors/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion controls/charts/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@syncfusion/ej2-charts",
"version": "26.2.11",
"version": "26.2.12",
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.",
"author": "Syncfusion Inc.",
"license": "SEE LICENSE IN license",
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -222,7 +222,7 @@ describe('Chart Control', () => {
svg = document.getElementById('container_ChartAreaBorder');
let label1: any = document.getElementById('containerAxisLabels0').childNodes[0];
let label2: any = document.getElementById('containerAxisLabels0').childNodes[5];
expect(parseInt(label1.getAttribute('y'))).toEqual((parseInt(svg.getAttribute('y')) + parseInt(svg.getAttribute('height'))));
expect(parseInt(label1.getAttribute('y'))).toEqual((361));
// expect(+label2.getAttribute('y')).toEqual(+svg.getAttribute('y'));
done();
};
Expand Down
2 changes: 1 addition & 1 deletion controls/charts/src/chart/axis/category-axis.ts
Original file line number Diff line number Diff line change
Expand Up @@ -73,7 +73,7 @@ export class Category extends NiceInterval {
public applyRangePadding(axis: Axis, size: Size): void {
let isColumn: boolean;
axis.series.forEach((element: Series) => {
if (!isColumn) { isColumn = element.type.indexOf('Column') > -1 && !(axis.zoomFactor < 1 || axis.zoomPosition > 0) && isNullOrUndefined(axis.minimum) && isNullOrUndefined(axis.maximum); }
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); }
});
const ticks: number = ((axis.labelPlacement === 'BetweenTicks' || isColumn) && !this.chart.stockChart && this.chart.chartAreaType !== 'PolarRadar') ? 0.5 : 0;
if (ticks > 0) {
Expand Down
2 changes: 1 addition & 1 deletion controls/data/node_modules/@types/node/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion controls/data/node_modules/aws-sdk/README.md

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit 3c59af6

Please sign in to comment.