Move pie outerStrokeWidth to theme variables, update docs

This commit is contained in:
Billiam
2023-02-28 13:27:09 -06:00
parent 3bed70a0c5
commit 82f5b4ca39
16 changed files with 81 additions and 30 deletions

View File

@@ -84,7 +84,7 @@ describe('Pie Chart', () => {
"Ice-Hockey" : 80
"Football" : 90
`,
{ pie: { outerBorderWidth: 5 } }
{ theme: 'base', themeVariables: { pieOuterStrokeWidth: '5px' } }
);
cy.get('.pieOuterCircle').should((circle) => {
const strokeWidth = parseFloat(circle.attr('stroke-width'));