Skip to content

Commit

Permalink
barWidth-xx
Browse files Browse the repository at this point in the history
  • Loading branch information
escullz committed Jun 17, 2022
1 parent cc12f1e commit 8ee31b1
Show file tree
Hide file tree
Showing 6 changed files with 7 additions and 7 deletions.
2 changes: 1 addition & 1 deletion dist/apexcharts.amd.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/apexcharts.common.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/apexcharts.esm.js

Large diffs are not rendered by default.

4 changes: 2 additions & 2 deletions dist/apexcharts.js
Original file line number Diff line number Diff line change
Expand Up @@ -6894,9 +6894,9 @@
if (Array.isArray(this.barOptions.columnWidth)) {
barWidth = this.barOptions.columnWidth[j];
console.log(" bar width ", j, barWidth, this.barOptions);
}
} // barWidth = (10 * (j+1))


barWidth = 10 * (j + 1);
console.log(" bar width ", j, barWidth, this.barOptions);
paths = this.drawColumnPaths(_objectSpread2(_objectSpread2({}, pathsParams), {}, {
xDivision: xDivision,
Expand Down
2 changes: 1 addition & 1 deletion dist/apexcharts.min.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion src/charts/Bar.js
Original file line number Diff line number Diff line change
Expand Up @@ -168,7 +168,7 @@ class Bar {
console.log(" bar width ", j, barWidth, this.barOptions)
}

barWidth = (10 * (j+1))
// barWidth = (10 * (j+1))
console.log(" bar width ", j, barWidth, this.barOptions)

paths = this.drawColumnPaths({
Expand Down

0 comments on commit 8ee31b1

Please sign in to comment.