Browse Source

Fill confidence interval #322 (#327)

master
rozetko 5 years ago committed by GitHub
parent
commit
a9fa77306e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 21
      src/panel/graph_panel/controllers/analytic_controller.ts

21
src/panel/graph_panel/controllers/analytic_controller.ts

@ -545,7 +545,7 @@ export class AnalyticController {
}
const hsrSerie = {
...response.hsr,
color: ANALYTIC_UNIT_COLORS[0],
color: ANALYTIC_UNIT_COLORS[1],
// TODO: render it separately from Metric series
overrides: [
{ alias: 'HSR', linewidth: 3, fill: 0 }
@ -558,14 +558,25 @@ export class AnalyticController {
{
target: '[AnomalyDetector]: lower bound',
datapoints: response.lowerBound.datapoints,
color: ANALYTIC_UNIT_COLORS[0],
overrides: [{ alias: '[AnomalyDetector]: lower bound', linewidth: 1, fill: 0 }]
color: ANALYTIC_UNIT_COLORS[1],
overrides: [{
alias: '[AnomalyDetector]: lower bound',
linewidth: 1,
fill: 0,
legend: false
}]
},
{
target: '[AnomalyDetector]: upper bound',
datapoints: response.upperBound.datapoints,
color: ANALYTIC_UNIT_COLORS[0],
overrides: [{ alias: '[AnomalyDetector]: upper bound', linewidth: 1, fill: 0 }]
color: ANALYTIC_UNIT_COLORS[1],
overrides: [{
alias: '[AnomalyDetector]: upper bound',
linewidth: 1,
fill: 0,
fillBelowTo: '[AnomalyDetector]: lower bound',
legend: false
}]
},
hsrSerie
];

Loading…
Cancel
Save