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.3.24 to 16.3.27

8

CHANGELOG.md

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

- Stroke width for line type legend is now working fine.
## 16.3.24 (2018-10-09)
### Chart
#### Bug Fixes
- Data label template now working properly in angular.

@@ -17,0 +25,0 @@

18

dist/global/index.d.ts
/*!
* filename: index.d.ts
* version : 16.3.24
* version : 16.3.27
* Copyright Syncfusion Inc. 2001 - 2018. All rights reserved.

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

import * as _charts from '@syncfusion/ej2-charts';
import * as _base from '@syncfusion/ej2-base';
import * as _data from '@syncfusion/ej2-data';
import * as _svgbase from '@syncfusion/ej2-svg-base';
import * as _pdfexport from '@syncfusion/ej2-pdf-export';
import * as _fileutils from '@syncfusion/ej2-file-utils';
import * as _compression from '@syncfusion/ej2-compression';
import * as _navigations from '@syncfusion/ej2-navigations';
import * as _calendars from '@syncfusion/ej2-calendars';
export declare namespace ej {
const charts: typeof _charts;
const base: typeof _base;
const data: typeof _data;
const svgbase: typeof _svgbase;
const pdfexport: typeof _pdfexport;
const fileutils: typeof _fileutils;
const compression: typeof _compression;
const navigations: typeof _navigations;
const calendars: typeof _calendars;
}

10

package.json
{
"name": "@syncfusion/ej2-charts",
"version": "16.3.24",
"version": "16.3.27",
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball.",

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

"@syncfusion/ej2-base": "~16.3.24",
"@syncfusion/ej2-data": "~16.3.24",
"@syncfusion/ej2-data": "~16.3.27",
"@syncfusion/ej2-svg-base": "~16.3.24",
"@syncfusion/ej2-pdf-export": "~16.3.24",
"@syncfusion/ej2-pdf-export": "~16.3.27",
"@syncfusion/ej2-file-utils": "~16.3.24",
"@syncfusion/ej2-compression": "~16.3.24",
"@syncfusion/ej2-navigations": "~16.3.24",
"@syncfusion/ej2-calendars": "~16.3.24"
"@syncfusion/ej2-navigations": "~16.3.27",
"@syncfusion/ej2-calendars": "~16.3.27"
},

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

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

AccumulationSelection.prototype.checkSelectionElements = function (element, className, visibility) {
var children = (element.childNodes[0].childNodes);
var children = element.childNodes[0].childNodes;
var legendShape;

@@ -187,0 +187,0 @@ var elementClass;

@@ -629,3 +629,5 @@ import { ChartLocation, Rect, TextOption, RectOption, isCollide } from '../../common/utils/helper';

var length = element ? 1 : textNode.length;
var tempElement;
for (var i = 0; i < length; i++) {
tempElement = textNode[i];
if (element) {

@@ -636,7 +638,8 @@ element.style.visibility = 'hidden';

else {
location = new ChartLocation((+textNode[i].getAttribute('x')) + ((+textNode[i].getAttribute('width')) / 2), (+textNode[i].getAttribute('y')) + ((+textNode[i].getAttribute('height')) / 2));
markerAnimate(textNode[i], delay, 200, series, null, location, true);
location = new ChartLocation((+tempElement.getAttribute('x')) + ((+tempElement.getAttribute('width')) / 2), (+tempElement.getAttribute('y')) + ((+tempElement.getAttribute('height')) / 2));
markerAnimate(tempElement, delay, 200, series, null, location, true);
if (shapeElements[i]) {
location = new ChartLocation((+shapeElements[i].getAttribute('x')) + ((+shapeElements[i].getAttribute('width')) / 2), (+shapeElements[i].getAttribute('y')) + ((+shapeElements[i].getAttribute('height')) / 2));
markerAnimate(shapeElements[i], delay, 200, series, null, location, true);
tempElement = shapeElements[i];
location = new ChartLocation((+tempElement.getAttribute('x')) + ((+tempElement.getAttribute('width')) / 2), (+tempElement.getAttribute('y')) + ((+tempElement.getAttribute('height')) / 2));
markerAnimate(tempElement, delay, 200, series, null, location, true);
}

@@ -643,0 +646,0 @@ }

@@ -197,3 +197,2 @@ import { EventHandler } from '@syncfusion/ej2-base';

Toolkit.prototype.pan = function () {
var zoomModule = this.chart.zoomModule;
var element;

@@ -200,0 +199,0 @@ this.chart.zoomModule.isPanning = true;

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

shape = shape === 'Scatter' ? legendOption.markerShape : shape;
var symbolOption = new PathOption(this.legendID + this.generateId(legendOption, '_shape_', i), symbolColor, 1, symbolColor, 1, '', '');
var strokewidth = (legendOption.shape === 'HorizontalLine') ? (this.legend.shapeHeight / 10) :
((legendOption.shape === 'VerticalLine') ? (this.legend.shapeWidth / 10) : 1);
var symbolOption = new PathOption(this.legendID + this.generateId(legendOption, '_shape_', i), symbolColor, strokewidth, symbolColor, 1, '', '');
group.appendChild(drawSymbol(legendOption.location, shape, new Size(this.legend.shapeWidth, this.legend.shapeHeight), '', symbolOption, 'Click to show or hide the ' + legendOption.text + ' series'));

@@ -313,0 +315,0 @@ if (shape === 'Line' && legendOption.markerVisibility && legendOption.markerShape !== 'Image' ||

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

export * from './index';
import * as charts from './index';
import * as base from '@syncfusion/ej2-base';
import * as data from '@syncfusion/ej2-data';
import * as svgbase from '@syncfusion/ej2-svg-base';
import * as pdfexport from '@syncfusion/ej2-pdf-export';
import * as fileutils from '@syncfusion/ej2-file-utils';
import * as compression from '@syncfusion/ej2-compression';
import * as navigations from '@syncfusion/ej2-navigations';
import * as calendars from '@syncfusion/ej2-calendars';
export { charts, base, data, svgbase, pdfexport, fileutils, compression, navigations, calendars };

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

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc