Skip to content

Commit

Permalink
Fix issue #2547
Browse files Browse the repository at this point in the history
invert order of negativeFillColor and negativeBorderColor
  • Loading branch information
darkag committed Jan 5, 2024
1 parent ddab279 commit 9cfcda8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/xlsx/xform/sheet/cf-ext/databar-ext-xform.js
Original file line number Diff line number Diff line change
Expand Up @@ -54,8 +54,8 @@ class DatabarExtXform extends CompositeXform {
});

this.borderColorXform.render(xmlStream, model.borderColor);
this.negativeBorderColorXform.render(xmlStream, model.negativeBorderColor);
this.negativeFillColorXform.render(xmlStream, model.negativeFillColor);
this.negativeBorderColorXform.render(xmlStream, model.negativeBorderColor);
this.axisColorXform.render(xmlStream, model.axisColor);

xmlStream.closeNode();
Expand Down

0 comments on commit 9cfcda8

Please sign in to comment.