Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat(gauge): 仪表盘支持 annotations #2345

Merged
merged 1 commit into from
Feb 24, 2021
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion src/plots/gauge/adaptor.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
import { isString } from '@antv/util';
import { interaction, animation, theme, scale } from '../../adaptor/common';
import { interaction, animation, theme, scale, annotation } from '../../adaptor/common';
import { AXIS_META_CONFIG_KEYS } from '../../constant';
import { Params } from '../../core/adaptor';
import { Data } from '../../types';
Expand Down Expand Up @@ -198,6 +198,7 @@ export function adaptor(params: Params<GaugeOptions>) {
theme,
// meterView 需要放到主题之后
meterView,
annotation(),
other
// ... 其他的 adaptor flow
)(params);
Expand Down