Skip to content

Commit 9e96429

Browse files
authored
Merge pull request #3903 from VisActor/fix/build-problem
chore: fix build problem
2 parents e055e65 + fad1a02 commit 9e96429

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

packages/vchart/src/component/marker/mark-point/cartesian-mark-point.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ export class CartesianMarkPoint extends BaseMarkPoint {
1717
coordinateType = 'cartesian' as CoordinateType;
1818

1919
protected _computePointsAttr() {
20-
const spec = this._spec;
20+
const spec = this._spec as any;
2121
const data = this._markerData;
2222
const relativeSeries = this._relativeSeries;
2323
const isXYLayout = isValid(spec.x) && isValid(spec.y);

packages/vchart/src/data/transforms/pictogram.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,7 @@ const commonAttributes = (attributes: Record<string, any>) => {
4141

4242
export const graphicAttributeTransform = {
4343
group: (attributes: Record<string, any>) => {
44-
const common = commonAttributes(attributes);
44+
const common = commonAttributes(attributes) as any;
4545
return {
4646
...common,
4747
visibleAll: common.visible !== false

0 commit comments

Comments
 (0)