Skip to content

Commit

Permalink
fix: type error fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kkxxkk2019 committed Jul 11, 2024
1 parent 507ac51 commit 7223623
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions packages/vchart/src/component/marker/utils.ts
Original file line number Diff line number Diff line change
Expand Up @@ -399,8 +399,8 @@ function convertPosition(position: MarkerPositionPoint, relativeWidth: number, r
}

return {
x,
y
x: x as number,
y: y as number
};
}

Expand Down

0 comments on commit 7223623

Please sign in to comment.