Browse Source

refactor: set default width for legend label to 150

tags/v1.5.0
Shivam Mishra 5 years ago
parent
commit
73fddf0623
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      src/js/charts/AggregationChart.js

+ 1
- 1
src/js/charts/AggregationChart.js View File

@@ -63,7 +63,7 @@ export default class AggregationChart extends BaseChart {
let count = 0;
let y = 0;
this.legendTotals.map((d, i) => {
let barWidth = 110;
let barWidth = 150;
let divisor = Math.floor(
(this.width - getExtraWidth(this.measures))/barWidth
);


Loading…
Cancel
Save