Skip to content

Commit ccaa9a9

Browse files
author
pipeline
committed
v17.3.34 is released
1 parent 3a42b2b commit ccaa9a9

File tree

132 files changed

+3721
-2100
lines changed

Some content is hidden

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

132 files changed

+3721
-2100
lines changed

controls/charts/dist/ej2-charts.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/dist/ej2-charts.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/dist/es6/ej2-charts.es2015.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11960,7 +11960,7 @@ class PolarRadarPanel extends LineBase {
1196011960
}
1196111961
if (!isIntersect && legendRect) {
1196211962
isIntersect = isOverlap(labelRegions[i], legendRect);
11963-
if (isIntersect && intersectType === 'Trim') {
11963+
if (isIntersect) {
1196411964
let width = this.getAvailableSpaceToTrim(legendRect, labelRegions[i]);
1196511965
if (width > 0) {
1196611966
labelText = textTrim(width, axis.visibleLabels[i].originalText, axis.labelStyle);

controls/charts/dist/es6/ej2-charts.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/dist/es6/ej2-charts.es5.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12662,7 +12662,7 @@ var PolarRadarPanel = /** @__PURE__ @class */ (function (_super) {
1266212662
}
1266312663
if (!isIntersect && legendRect) {
1266412664
isIntersect = isOverlap(labelRegions[i], legendRect);
12665-
if (isIntersect && intersectType === 'Trim') {
12665+
if (isIntersect) {
1266612666
var width = this.getAvailableSpaceToTrim(legendRect, labelRegions[i]);
1266712667
if (width > 0) {
1266812668
labelText = textTrim(width, axis.visibleLabels[i].originalText, axis.labelStyle);

controls/charts/dist/es6/ej2-charts.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/dist/global/ej2-charts.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/charts/dist/global/ej2-charts.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

controls/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-charts",
3-
"version": "17.3.28",
3+
"version": "17.3.30",
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/src/chart/axis/polar-radar-panel.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -555,7 +555,7 @@ export class PolarRadarPanel extends LineBase {
555555
}
556556
if (!isIntersect && legendRect) {
557557
isIntersect = isOverlap(labelRegions[i], legendRect);
558-
if (isIntersect && intersectType === 'Trim') {
558+
if (isIntersect) {
559559
let width: number = this.getAvailableSpaceToTrim(legendRect, labelRegions[i]);
560560
if (width > 0) {
561561
labelText = textTrim(width, axis.visibleLabels[i].originalText, axis.labelStyle);

0 commit comments

Comments
 (0)