Skip to content

Commit c674ddc

Browse files
author
pipeline
committed
v18.2.46 is released
1 parent d28d5b7 commit c674ddc

Some content is hidden

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

55 files changed

+238
-36
lines changed

components/base/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.2.45 (2020-07-14)
5+
## 18.2.46 (2020-07-21)
66

77
### Common
88

components/charts/CHANGELOG.md

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,16 @@
22

33
## [Unreleased]
44

5+
## 18.2.46 (2020-07-21)
6+
7+
### Chart
8+
9+
#### Bug Fixes
10+
11+
- `#285003` - Chart DataSource is not updating when the page has more number of chart issue fixed.
12+
- `#155963` - Added new API showZero to show data labels for value zero.
13+
- `#283698` - point click event is not working in some random cases.
14+
515
## 18.2.45 (2020-07-14)
616

717
- `#278688` - Added sharedTooltipRender event for shared tooltip in blazor.

components/charts/dist/ej2-vue-charts.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/charts/dist/ej2-vue-charts.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/charts/dist/es6/ej2-vue-charts.es2015.js

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

components/charts/dist/es6/ej2-vue-charts.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/charts/dist/es6/ej2-vue-charts.es5.js

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

components/charts/dist/es6/ej2-vue-charts.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/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.2.44",
3+
"version": "18.2.45",
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/charts/src/chart/chart.component.ts

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -113,6 +113,10 @@ export class ChartComponent extends ComponentBase {
113113
return this.ej2Instances.print(id);
114114
}
115115

116+
public processData(render: boolean): void {
117+
return this.ej2Instances.processData(render);
118+
}
119+
116120
public refreshLiveData(): void {
117121
return this.ej2Instances.refreshLiveData();
118122
}

0 commit comments

Comments
 (0)