mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 01:38:56 -04:00
[TSVB] fixes steps behavior to happen at the change point (#128741)
This commit is contained in:
parent
f4ed8e118f
commit
261819208d
2 changed files with 2 additions and 2 deletions
|
@ -20,7 +20,7 @@ Object {
|
|||
"visible": true,
|
||||
},
|
||||
},
|
||||
"curve": 6,
|
||||
"curve": 7,
|
||||
}
|
||||
`;
|
||||
|
||||
|
|
|
@ -29,7 +29,7 @@ export const getAreaStyles = ({ points, lines, color }) => ({
|
|||
visible: points.lineWidth > 0 && Boolean(points.show),
|
||||
},
|
||||
},
|
||||
curve: lines.steps ? CurveType.CURVE_STEP : CurveType.LINEAR,
|
||||
curve: lines.steps ? CurveType.CURVE_STEP_AFTER : CurveType.LINEAR,
|
||||
});
|
||||
|
||||
export const getBarStyles = ({ show = true, lineWidth = 0, fill = 1 }, color) => ({
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue