Socket
Socket
Sign inDemoInstall

@syncfusion/ej2-charts

Package Overview
Dependencies
Maintainers
2
Versions
297
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

@syncfusion/ej2-charts - npm Package Compare versions

Comparing version 16.2.41 to 16.2.44

8

CHANGELOG.md

@@ -13,2 +13,10 @@ <!-- markdownlint-disable MD010 -->

#### Bug Fixes
- Now column series is rendering properly with single data in datetime axis.
## 16.2.41 (2018-06-25)
### Chart
#### Breaking Changes

@@ -15,0 +23,0 @@

@@ -0,1 +1,10 @@

/*!
* filename: index.d.ts
* version : 16.2.44
* Copyright Syncfusion Inc. 2001 - 2018. 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 @@ import * as _base from '@syncfusion/ej2-base';

8

package.json
{
"name": "@syncfusion/ej2-charts",
"version": "16.2.41",
"version": "16.2.44",
"description": "Essential JS 2 Chart Components",

@@ -9,3 +9,3 @@ "author": "Syncfusion Inc.",

"@syncfusion/ej2-base": "~16.2.41",
"@syncfusion/ej2-data": "~16.2.41",
"@syncfusion/ej2-data": "~16.2.43",
"@syncfusion/ej2-svg-base": "~16.2.41",

@@ -15,4 +15,4 @@ "@syncfusion/ej2-pdf-export": "~16.2.41",

"@syncfusion/ej2-compression": "~16.2.41",
"@syncfusion/ej2-navigations": "~16.2.41",
"@syncfusion/ej2-calendars": "~16.2.41"
"@syncfusion/ej2-navigations": "~16.2.44",
"@syncfusion/ej2-calendars": "~16.2.44"
},

@@ -19,0 +19,0 @@ "devDependencies": {

@@ -297,3 +297,4 @@ import { Property, ChildProperty, Complex, createElement } from '@syncfusion/ej2-base';import { isNullOrUndefined, getValue } from '@syncfusion/ej2-base';import { DataManager, Query } from '@syncfusion/ej2-data';import { Border, Font, Animation, Index, EmptyPointSettings, Connector } from '../../common/model/base';import { Rect, ChartLocation, stringToNumber, PathOption, Size } from '../../common/utils/helper';import { AccumulationType, AccumulationLabelPosition, PyramidModes } from '../model/enum';import { IAccSeriesRenderEventArgs, IAccPointRenderEventArgs } from '../model/pie-interface';import { LegendShape } from '../../chart/utils/enum';import { Data } from '../../common/model/data';import { seriesRender, pointRender } from '../../common/model/constants';import { getSeriesColor } from '../../common/model/theme';import { FontModel, BorderModel, AnimationModel, EmptyPointSettingsModel, ConnectorModel } from '../../common/model/base-model';import { AccumulationChart } from '../accumulation';import { getElement, firstToLowerCase } from '../../common/utils/helper';import { Units, Alignment, Regions, Position, SeriesCategories } from '../../common/utils/enum';import { GroupModes } from './enum';

* End angle for a series.
* @default 360
* @default null
* @aspDefaultValueIgnore
*/

@@ -300,0 +301,0 @@ endAngle?: number;

@@ -279,3 +279,4 @@ /**

* End angle for a series.
* @default 360
* @default null
* @aspDefaultValueIgnore
*/

@@ -282,0 +283,0 @@ endAngle: number;

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

__decorate([
ej2_base_1.Property(360)
ej2_base_1.Property(null)
], AccumulationSeries.prototype, "endAngle", void 0);

@@ -340,0 +340,0 @@ __decorate([

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

PieBase.prototype.initAngles = function (series) {
this.totalAngle = (series.endAngle - series.startAngle) % 360;
var endAngle = ej2_base_1.isNullOrUndefined(series.endAngle) ? series.startAngle : series.endAngle;
this.totalAngle = (endAngle - series.startAngle) % 360;
this.startAngle = series.startAngle - 90;

@@ -48,0 +49,0 @@ this.totalAngle = this.totalAngle <= 0 ? (360 + this.totalAngle) : this.totalAngle;

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc