We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f7ddffd commit 917430dCopy full SHA for 917430d
1 file changed
src/Component/BlazorComponent.Web/src/proxies/echarts/index.ts
@@ -56,6 +56,14 @@ class EChartsProxy {
56
this.instance.setOption(eval("option=" + option), notMerge, lazyUpdate);
57
}
58
59
+ showLoading(opts?: object){
60
+ this.instance.showLoading('default', opts);
61
+ }
62
+
63
+ hideLoading(){
64
+ this.instance.hideLoading();
65
66
67
resize(opts?: EChartsResizeOption) {
68
this.instance.resize(opts);
69
0 commit comments