mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
fixing based on Brandons review
This commit is contained in:
parent
03a0e9f439
commit
2f86249f5e
1 changed files with 1 additions and 2 deletions
|
@ -11,7 +11,6 @@ export default function AreaChartFactory(Private) {
|
|||
showCircles: true,
|
||||
radiusRatio: 9,
|
||||
showLines: true,
|
||||
smoothLines: false,
|
||||
interpolate: 'linear',
|
||||
color: undefined,
|
||||
fillColor: undefined,
|
||||
|
@ -68,7 +67,7 @@ export default function AreaChartFactory(Private) {
|
|||
const color = this.handler.data.getColorFunc();
|
||||
const xScale = this.getCategoryAxis().getScale();
|
||||
const yScale = this.getValueAxis().getScale();
|
||||
const interpolate = (this.seriesConfig.smoothLines) ? 'cardinal' : this.seriesConfig.interpolate;
|
||||
const interpolate = this.seriesConfig.interpolate;
|
||||
const isHorizontal = this.getCategoryAxis().axisConfig.isHorizontal();
|
||||
|
||||
// Data layers
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue