Skip to content

Commit 14a9cb1

Browse files
author
pipeline
committed
v18.1.52 is released
1 parent 5513477 commit 14a9cb1

File tree

101 files changed

+311
-116
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

101 files changed

+311
-116
lines changed

components/buttons/CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## [Unreleased]
44

5-
## 18.1.48 (2020-05-05)
5+
## 18.1.52 (2020-05-13)
66

77
### Chips
88

components/charts/CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,13 +2,22 @@
22

33
## [Unreleased]
44

5+
## 18.1.52 (2020-05-13)
6+
7+
### Accumulation chart
8+
9+
#### Bug Fixes
10+
11+
- `#I273694` - Legend paging issue when legend position in Right side fixed.
12+
513
## 18.1.48 (2020-05-05)
614

715
### Chart
816

917
#### Bug Fixes
1018

1119
- `#273192` - Trendlines are short and have the wrong slope direction issue fixed.
20+
- `#267962` - when using react parcel, chart throws console error issue fixed.
1221

1322
## 18.1.45 (2020-04-21)
1423

components/charts/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "@syncfusion/ej2-vue-charts",
3-
"version": "18.1.45",
3+
"version": "18.1.48",
44
"description": "Feature-rich chart control with built-in support for over 25 chart types, technical indictors, trendline, zooming, tooltip, selection, crosshair and trackball. for Vue",
55
"author": "Syncfusion Inc.",
66
"license": "SEE LICENSE IN license",

components/circulargauge/dist/ej2-vue-circulargauge.umd.min.js

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/dist/ej2-vue-circulargauge.umd.min.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/dist/es6/ej2-vue-circulargauge.es2015.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/dist/es6/ej2-vue-circulargauge.es2015.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/dist/es6/ej2-vue-circulargauge.es5.js

Lines changed: 3 additions & 3 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/dist/es6/ej2-vue-circulargauge.es5.js.map

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

components/circulargauge/src/circular-gauge/circulargauge.component.ts

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import { PointersDirective, PointerDirective, PointersPlugin, PointerPlugin } fr
77
import { AxesDirective, AxisDirective, AxesPlugin, AxisPlugin } from './axes.directive'
88

99

10-
export const properties: string[] = ['axes', 'background', 'border', 'centerX', 'centerY', 'description', 'enablePersistence', 'enablePointerDrag', 'enableRangeDrag', 'enableRtl', 'height', 'legendSettings', 'locale', 'margin', 'moveToCenter', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'animationComplete', 'annotationRender', 'axisLabelRender', 'beforePrint', 'dragEnd', 'dragMove', 'dragStart', 'gaugeMouseDown', 'gaugeMouseLeave', 'gaugeMouseMove', 'gaugeMouseUp', 'legendRender', 'load', 'loaded', 'radiusCalculate', 'resized', 'tooltipRender'];
10+
export const properties: string[] = ['allowImageExport', 'allowPdfExport', 'allowPrint', 'axes', 'background', 'border', 'centerX', 'centerY', 'description', 'enablePersistence', 'enablePointerDrag', 'enableRangeDrag', 'enableRtl', 'height', 'legendSettings', 'locale', 'margin', 'moveToCenter', 'tabIndex', 'theme', 'title', 'titleStyle', 'tooltip', 'useGroupingSeparator', 'width', 'animationComplete', 'annotationRender', 'axisLabelRender', 'beforePrint', 'dragEnd', 'dragMove', 'dragStart', 'gaugeMouseDown', 'gaugeMouseLeave', 'gaugeMouseMove', 'gaugeMouseUp', 'legendRender', 'load', 'loaded', 'radiusCalculate', 'resized', 'tooltipRender'];
1111
export const modelProps: string[] = [];
1212

1313
/**
@@ -55,8 +55,8 @@ export class CircularGaugeComponent extends ComponentBase {
5555
return createElement('div', (this as any).$slots.default);
5656
}
5757

58-
public export(type: Object, fileName: string, orientation?: Object): void {
59-
return this.ej2Instances.export(type, fileName, orientation);
58+
public export(type: Object, fileName: string, orientation?: Object, allowDownload?: boolean): Object {
59+
return this.ej2Instances.export(type, fileName, orientation, allowDownload);
6060
}
6161

6262
public print(id?: string[] | string | Object): void {

0 commit comments

Comments
 (0)