Commit 9b9f1ad1 by Ivana Huckova Committed by GitHub

@grafana/ui: Fix displaying of bars in React Graph (#21968)

parent 8b632ac0
...@@ -319,7 +319,7 @@ export class Graph extends PureComponent<GraphProps, GraphState> { ...@@ -319,7 +319,7 @@ export class Graph extends PureComponent<GraphProps, GraphState> {
// Dividig the width by 1.5 to make the bars not touch each other // Dividig the width by 1.5 to make the bars not touch each other
barWidth: showBars ? this.getBarWidth() / 1.5 : 1, barWidth: showBars ? this.getBarWidth() / 1.5 : 1,
zero: false, zero: false,
lineWidth: 0, lineWidth: lineWidth,
}, },
shadowSize: 0, shadowSize: 0,
}, },
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment