Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-charts

Package Overview
Dependencies
8
Maintainers
3
Versions
285
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 21.1.39 to 21.1.41

13

CHANGELOG.md

@@ -9,2 +9,15 @@ # Changelog

- `#I451521` - Now, the border is proper in the funnel and pyramid series.
- `#I453698` - Cross shape marker now displays correctly in Scatter Series.
- `#I439673` - The `enableTextWrap` property of the tooltip is now working properly in the pie chart.
- `#I452390` - Fixed the issue where the axis label was not properly visible.
- `#I447639` - Tooltip format now displays properly when using the axis label format.
- `#I453698` - The legend shape now reflects the marker shape in scatter series.
## 21.1.39 (2023-04-11)
### Chart
#### Bug Fixes
- `#I451537` - Now, the column chart rectangle is properly rendering for OnTicks.

@@ -11,0 +24,0 @@ - `#I452148` - The chart now renders correctly even when the x value is set to an empty string in the data source.

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 21.1.39
* version : 21.1.41
* Copyright Syncfusion Inc. 2001 - 2020. All rights reserved.

@@ -5,0 +5,0 @@ * Use of this code is subject to the terms of our license.

{
"_from": "@syncfusion/ej2-charts@*",
"_id": "@syncfusion/ej2-charts@21.1.38",
"_id": "@syncfusion/ej2-charts@21.1.39",
"_inBundle": false,
"_integrity": "sha512-g03F2vOB2dRZ2is7ycgt7ftGYlk9BZGqj1CPRP2oirynzwig0PmnPYKiFkVjPqaipEbMcIoGE2VQOUt617fzQA==",
"_integrity": "sha512-6ji93Yy5o4qTcYK86H8bOZwjk26nl+wbeQiFq14MCJ/9K5OXL9yuXkyjbWvIVzZjHHdl11aGSzLWl/CDVGlRLQ==",
"_location": "/@syncfusion/ej2-charts",

@@ -29,4 +29,4 @@ "_phantomChildren": {},

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-charts/-/ej2-charts-21.1.38.tgz",
"_shasum": "499e996cafb2388d943c2bfb2fac368c8573ca08",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-charts/-/ej2-charts-21.1.39.tgz",
"_shasum": "f16399eb9ccfa640de12298bcf5212aeccc46f16",
"_spec": "@syncfusion/ej2-charts@*",

@@ -39,4 +39,4 @@ "_where": "/jenkins/workspace/elease-automation_release_21.1.1/packages/included",

"dependencies": {
"@syncfusion/ej2-base": "~21.1.39",
"@syncfusion/ej2-calendars": "~21.1.38",
"@syncfusion/ej2-base": "~21.1.40",
"@syncfusion/ej2-calendars": "~21.1.41",
"@syncfusion/ej2-compression": "~21.1.37",

@@ -76,5 +76,5 @@ "@syncfusion/ej2-data": "~21.1.38",

"typings": "index.d.ts",
"version": "21.1.39",
"version": "21.1.41",
"sideEffects": false,
"homepage": "https://www.syncfusion.com/javascript-ui-controls"
}

@@ -106,3 +106,3 @@ /* eslint-disable jsdoc/require-returns */

}
return path;
return path + ' Z';
};

@@ -109,0 +109,0 @@ /**

@@ -71,3 +71,3 @@ var __extends = (this && this.__extends) || (function () {

if (!isColumn) {
isColumn = element.type.indexOf('Column') > -1 && isNullOrUndefined(axis.minimum) && isNullOrUndefined(axis.maximum);
isColumn = element.type.indexOf('Column') > -1 && !(axis.zoomFactor < 1 || axis.zoomPosition > 0) && isNullOrUndefined(axis.minimum) && isNullOrUndefined(axis.maximum);
}

@@ -74,0 +74,0 @@ });

@@ -122,3 +122,3 @@ var __extends = (this && this.__extends) || (function () {

this.legendCollections.push(new LegendOptions(series.name, fill, series.legendShape, (series.category === 'TrendLine' ?
this.chart.series[series.sourceIndex].trendlines[series.index].visible : series.visible), seriesType, series.legendImageUrl, series.marker.shape, series.marker.visible, null, null, dashArray));
this.chart.series[series.sourceIndex].trendlines[series.index].visible : series.visible), seriesType, series.legendImageUrl ? series.legendImageUrl : (series.type === 'Scatter' && series.marker.shape === 'Image' ? series.marker.imageUrl : ''), series.marker.shape, series.marker.visible, null, null, dashArray));
}

@@ -133,3 +133,3 @@ }

this_1.legendCollections.push(new LegendOptions(points.x.toString(), fill, series.legendShape, (series.category === 'TrendLine' ?
this_1.chart.series[series.sourceIndex].trendlines[series.index].visible : points.visible), seriesType, '', series.marker.shape, series.marker.visible));
this_1.chart.series[series.sourceIndex].trendlines[series.index].visible : points.visible), seriesType, (series.type === 'Scatter' && series.marker.shape === 'Image') ? series.marker.imageUrl : '', series.marker.shape, series.marker.visible));
}

@@ -160,3 +160,3 @@ };

this.legendCollections.push(new LegendOptions(legendLabel, fill, series.legendShape, (series.category === 'TrendLine' ?
this.chart.series[series.sourceIndex].trendlines[series.index].visible : points.visible), seriesType, '', series.marker.shape, series.marker.visible));
this.chart.series[series.sourceIndex].trendlines[series.index].visible : points.visible), seriesType, (series.type === 'Scatter' && series.marker.shape === 'Image') ? series.marker.imageUrl : '', series.marker.shape, series.marker.visible));
}

@@ -163,0 +163,0 @@ }

@@ -59,3 +59,3 @@ /* eslint-disable valid-jsdoc */

ScatterSeries.prototype.isLineShapeMarker = function (shape) {
return shape === 'HorizontalLine' || shape === 'VerticalLine';
return shape === 'HorizontalLine' || shape === 'VerticalLine' || shape === 'Cross';
};

@@ -62,0 +62,0 @@ /**

@@ -491,3 +491,2 @@ var __extends = (this && this.__extends) || (function () {

val.source === '${point.lowerQuartile}' ||
val.source === '${point.size}' ||
val.source === '${point.median}')));

@@ -518,2 +517,6 @@ }

}
else if (dataValue === 'size') {
var format = this.chart.intl.getNumberFormat({ format: '', useGrouping: this.chart.useGroupingSeparator });
textValue = typeof point[dataValue] === 'number' ? format(point[dataValue]) : point[dataValue];
}
else {

@@ -520,0 +523,0 @@ textValue = point[dataValue];

@@ -167,3 +167,3 @@ var __extends = (this && this.__extends) || (function () {

isCanvas: this.chart.enableCanvas,
isTextWrap: chart.tooltip.enableTextWrap && chart.getModuleName() === 'chart',
isTextWrap: chart.tooltip.enableTextWrap && (chart.getModuleName() === 'chart' || chart.getModuleName() === 'accumulationchart'),
blazorTemplate: { name: 'Template', parent: this.chart.tooltip },

@@ -170,0 +170,0 @@ controlInstance: this.chart,

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Packages

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc