@syncfusion/ej2-charts
Advanced tools
Comparing version 28.1.36 to 28.1.37
@@ -0,1 +1,10 @@ | ||
/*! | ||
* filename: index.d.ts | ||
* version : 28.1.37 | ||
* Copyright Syncfusion Inc. 2001 - 2024. All rights reserved. | ||
* Use of this code is subject to the terms of our license. | ||
* A copy of the current license can be obtained at any time by e-mailing | ||
* licensing@syncfusion.com. Any infringement will be prosecuted under | ||
* applicable laws. | ||
*/ | ||
import * as _charts from '@syncfusion/ej2-charts'; | ||
@@ -2,0 +11,0 @@ |
@@ -5,3 +5,3 @@ { | ||
"_inBundle": false, | ||
"_integrity": "sha512-ToD4BKBO+QVpzG3k5FabPGvT+YfHF5bYW0eDmpQqZ5TJwKKX6oYn+MiSYYuFIcrc27cHbc1v3jJkBIvBz7wA/A==", | ||
"_integrity": "sha512-J4CwG1rV6WxBdwGpO71dyVENQEFykRXaVhpwG/oPeprBMtYua/iCenoW5MnfcwSKO7CB8+nIBCqx4/mfIrqxdQ==", | ||
"_location": "/@syncfusion/ej2-charts", | ||
@@ -30,3 +30,3 @@ "_phantomChildren": {}, | ||
"_resolved": "https://nexus.syncfusioninternal.com/repository/ej2-hotfix-new/@syncfusion/ej2-charts/-/ej2-charts-28.1.35.tgz", | ||
"_shasum": "525b65b9c693462771f5ee4a3ea27dc576a8f510", | ||
"_shasum": "6723dbe78794a7cca3d0126b258bb058e4d47f44", | ||
"_spec": "@syncfusion/ej2-charts@*", | ||
@@ -40,8 +40,8 @@ "_where": "/jenkins/workspace/elease-automation_release_28.1.1/packages/included", | ||
"@syncfusion/ej2-base": "~28.1.33", | ||
"@syncfusion/ej2-calendars": "~28.1.36", | ||
"@syncfusion/ej2-calendars": "~28.1.37", | ||
"@syncfusion/ej2-data": "~28.1.33", | ||
"@syncfusion/ej2-excel-export": "~28.1.33", | ||
"@syncfusion/ej2-navigations": "~28.1.36", | ||
"@syncfusion/ej2-navigations": "~28.1.37", | ||
"@syncfusion/ej2-pdf-export": "~28.1.33", | ||
"@syncfusion/ej2-svg-base": "~28.1.36" | ||
"@syncfusion/ej2-svg-base": "~28.1.37" | ||
}, | ||
@@ -75,5 +75,5 @@ "deprecated": false, | ||
"typings": "index.d.ts", | ||
"version": "28.1.36", | ||
"version": "28.1.37", | ||
"sideEffects": false, | ||
"homepage": "https://www.syncfusion.com/javascript-ui-controls" | ||
} |
@@ -18,3 +18,3 @@ import { Animation, animationMode, isNullOrUndefined, remove } from '@syncfusion/ej2-base'; | ||
series.isRectSeries = true; | ||
if (series.chart.enableSideBySidePlacement && !series.position) { | ||
if ((series.chart.enableSideBySidePlacement && !series.position) || !isNullOrUndefined(series.columnWidthInPixel)) { | ||
this.getSideBySidePositions(series); | ||
@@ -21,0 +21,0 @@ } |
@@ -18,3 +18,3 @@ var __extends = (this && this.__extends) || (function () { | ||
import { ColumnBase } from './column-base'; | ||
import { animationMode } from '@syncfusion/ej2-base'; | ||
import { animationMode, isNullOrUndefined } from '@syncfusion/ej2-base'; | ||
/** | ||
@@ -227,4 +227,6 @@ * The `WaterfallSeries` module is used to render the waterfall series. | ||
var sumValue = 0; | ||
var intermediateSum = series.intermediateSumIndexes; | ||
var sumIndex = series.sumIndexes; | ||
var intermediateSum = (!isNullOrUndefined(series.intermediateSumIndexes) && series.intermediateSumIndexes.length > 0) ? | ||
series.intermediateSumIndexes.sort() : series.intermediateSumIndexes; | ||
var sumIndex = (!isNullOrUndefined(series.sumIndexes) && series.sumIndexes.length > 0) ? series.sumIndexes.sort() : | ||
series.sumIndexes; | ||
var cumulativeSum = 0; | ||
@@ -256,3 +258,4 @@ for (var i = 0; i < data.length; i++) { | ||
if (intermediateSum !== undefined && intermediateSum.length > intermediateSumCount && | ||
intermediateSum[k] !== sumIndex[k]) { | ||
intermediateSum[k] !== sumIndex[k] && intermediateSum[k] < | ||
sumIndex[k]) { | ||
index = subArraySum(data, intermediateSum.length <= 1 ? intermediateSum[0] - 1 : | ||
@@ -259,0 +262,0 @@ intermediateSum[k] - 1, sumIndex[k], sumIndex, series); |
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
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
47406012
329426