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.2.9 to 21.2.10

8

CHANGELOG.md

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

- `#I451537` - Spline is now proper for negative points without specify the range.
## 21.2.9 (2023-06-06)
### Chart
#### Bug Fixes
- `#F182216` - Fixed the issue where the data label was hidden.

@@ -11,0 +19,0 @@ - `#I464403` - Fixed an issue where strip line text was getting cut off when it was too long.

2

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 21.2.9
* version : 21.2.10
* 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.2.8",
"_id": "@syncfusion/ej2-charts@21.2.9",
"_inBundle": false,
"_integrity": "sha512-qXZy57AZi17fEbULWPb2PRBUEkGLAgNjEnioyxSdYHtSgy3ogMTO1YF5W1e9sg9cI+mlldtJcuEYTeHrZFoouA==",
"_integrity": "sha512-pTyeTx551NGLoU6GgOyQ+rtO384Cmq+TVr2KMtA6w4hhWU9FYbe7K3hczFbWLr1Dg0e2iaYPzzuRhVzoNh8Tgw==",
"_location": "/@syncfusion/ej2-charts",

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

],
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-charts/-/ej2-charts-21.2.8.tgz",
"_shasum": "5399f9a02db26f6a005d389636f060b8bfda0445",
"_resolved": "https://nexus.syncfusion.com/repository/ej2-hotfix-new/@syncfusion/ej2-charts/-/ej2-charts-21.2.9.tgz",
"_shasum": "ec2374c4d1883e921d29afa1e17d5bc9284cdbf6",
"_spec": "@syncfusion/ej2-charts@*",

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

"@syncfusion/ej2-base": "~21.2.9",
"@syncfusion/ej2-calendars": "~21.2.9",
"@syncfusion/ej2-calendars": "~21.2.10",
"@syncfusion/ej2-compression": "~21.2.3",

@@ -46,3 +46,3 @@ "@syncfusion/ej2-data": "~21.2.9",

"@syncfusion/ej2-navigations": "~21.2.9",
"@syncfusion/ej2-pdf-export": "~21.2.8",
"@syncfusion/ej2-pdf-export": "~21.2.10",
"@syncfusion/ej2-svg-base": "~21.2.3"

@@ -77,5 +77,5 @@ },

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

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

var pointIndex = 0;
var negativePoint = false;
realPoints = this.filterEmptyPoints(series);

@@ -72,2 +73,3 @@ for (var i = 0; i < realPoints.length; i++) {

var point_1 = points_1[_i];
negativePoint = negativePoint ? negativePoint : point_1.yValue < 0;
if (point_1.index !== 0) {

@@ -96,2 +98,5 @@ var previous = this.getPreviousIndex(points, point_1.index - 1, series);

}
if (!negativePoint && series.yMin < 0) {
series.yMin = 0;
}
if (series.chart.chartAreaType === 'PolarRadar' && series.isClosed) {

@@ -98,0 +103,0 @@ value = this.getControlPoints({ xValue: points[points.length - 1].xValue, yValue: points[points.length - 1].yValue }, { xValue: points[points.length - 1].xValue + 1, yValue: points[0].yValue }, this.splinePoints[0], this.splinePoints[points[points.length - 1].index], series);

@@ -245,3 +245,3 @@ import { withInBounds, PointData, getValueXByPoint, getValueYByPoint, sort } from '../../common/utils/helper';

var rect = series.clipRect;
if (withInBounds(chart.mouseX, chart.mouseY, series.clipRect) || series.category === 'Indicator') {
if (chart.mouseX <= rect.x + rect.width && chart.mouseX >= rect.x) {
if (!chart.requireInvertedAxis) {

@@ -248,0 +248,0 @@ value = getValueXByPoint(chart.mouseX - rect.x, rect.width, series.xAxis);

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

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