We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f36dc45 commit 8ef4d3bCopy full SHA for 8ef4d3b
src/core/echarts.ts
@@ -2724,17 +2724,15 @@ export function connect(groupId: string | EChartsType[]): string {
2724
return groupId as string;
2725
}
2726
2727
-/**
2728
- * @deprecated
2729
- */
2730
-export function disConnect(groupId: string): void {
+export function disconnect(groupId: string): void {
2731
connectedGroups[groupId] = false;
2732
2733
2734
/**
2735
* Alias and backward compatibility
+ * @deprecated
2736
*/
2737
-export const disconnect = disConnect;
+export const disConnect = disconnect;
2738
2739
2740
* Dispose a chart instance
0 commit comments