Skip to content

Commit

Permalink
fix: fix border lineDash in cell group #1051
Browse files Browse the repository at this point in the history
  • Loading branch information
Rui-Sun committed Feb 5, 2024
1 parent fbba52c commit b9cdd52
Show file tree
Hide file tree
Showing 7 changed files with 16 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,10 @@
{
"changes": [
{
"packageName": "@visactor/vtable",
"comment": "fix: fix border lineDash in cell group #1051",
"type": "none"
}
],
"packageName": "@visactor/vtable"
}
Original file line number Diff line number Diff line change
Expand Up @@ -46,6 +46,7 @@ export function createChartCellGroup(
strokeArrayWidth: (cellTheme?.group as any)?.strokeArrayWidth ?? undefined,
strokeArrayColor: (cellTheme?.group as any)?.strokeArrayColor ?? undefined,
cursor: (cellTheme?.group as any)?.cursor ?? undefined,
lineDash: cellTheme?.group?.lineDash ?? undefined,

lineCap: 'square',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,7 @@ export function createCheckboxCellGroup(
strokeArrayWidth: (cellTheme?.group as any)?.strokeArrayWidth ?? undefined,
strokeArrayColor: (cellTheme?.group as any)?.strokeArrayColor ?? undefined,
cursor: (cellTheme?.group as any)?.cursor ?? undefined,
lineDash: cellTheme?.group?.lineDash ?? undefined,

lineCap: 'square',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -56,6 +56,7 @@ export function createImageCellGroup(
strokeArrayWidth: (cellTheme?.group as any)?.strokeArrayWidth ?? undefined,
strokeArrayColor: (cellTheme?.group as any)?.strokeArrayColor ?? undefined,
cursor: (cellTheme?.group as any)?.cursor ?? undefined,
lineDash: cellTheme?.group?.lineDash ?? undefined,

lineCap: 'square',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ export function createSparkLineCellGroup(
strokeArrayWidth: (cellTheme?.group as any)?.strokeArrayWidth ?? undefined,
strokeArrayColor: (cellTheme?.group as any)?.strokeArrayColor ?? undefined,
cursor: (cellTheme?.group as any)?.cursor ?? undefined,
lineDash: cellTheme?.group?.lineDash ?? undefined,

lineCap: 'square',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -76,6 +76,7 @@ export function createCellGroup(
strokeArrayWidth: (cellTheme?.group as any)?.strokeArrayWidth ?? undefined,
strokeArrayColor: (cellTheme?.group as any)?.strokeArrayColor ?? undefined,
cursor: (cellTheme?.group as any)?.cursor ?? undefined,
lineDash: cellTheme?.group?.lineDash ?? undefined,

lineCap: 'square',

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -57,6 +57,7 @@ export function createVideoCellGroup(
strokeArrayWidth: (cellTheme?.group as any)?.strokeArrayWidth ?? undefined,
strokeArrayColor: (cellTheme?.group as any)?.strokeArrayColor ?? undefined,
cursor: (cellTheme?.group as any)?.cursor ?? undefined,
lineDash: cellTheme?.group?.lineDash ?? undefined,

lineCap: 'square',

Expand Down

0 comments on commit b9cdd52

Please sign in to comment.