diff --git a/packages/s2-core/src/cell/corner-cell.ts b/packages/s2-core/src/cell/corner-cell.ts index 8d81dc131b..86e59fc71d 100644 --- a/packages/s2-core/src/cell/corner-cell.ts +++ b/packages/s2-core/src/cell/corner-cell.ts @@ -187,9 +187,10 @@ export class CornerCell extends HeaderCell { } private drawBackgroundShape() { - const { backgroundColorOpacity } = this.getStyle().cell; + const { backgroundColorOpacity, backgroundColor } = this.getStyle().cell; const attrs: ShapeAttrs = { ...this.getCellArea(), + fill: backgroundColor, opacity: backgroundColorOpacity, };