diff --git a/ui/src/shared/components/Dygraph.js b/ui/src/shared/components/Dygraph.js index ca68b3e8e..2e576dd0f 100644 --- a/ui/src/shared/components/Dygraph.js +++ b/ui/src/shared/components/Dygraph.js @@ -23,7 +23,6 @@ import { LABEL_WIDTH, CHAR_PIXELS, barPlotter, - highlightSeriesOpts, } from 'src/shared/graphs/helpers' import {getLineColorsHexes} from 'src/shared/constants/graphColorPalettes' @@ -70,7 +69,6 @@ class Dygraph extends Component { valueRange: getRange(timeSeries, y2.bounds), }, }, - highlightSeriesOpts, zoomCallback: (lower, upper) => this.handleZoom(lower, upper), } @@ -78,10 +76,6 @@ class Dygraph extends Component { defaultOptions = { ...defaultOptions, plotter: barPlotter, - highlightSeriesOpts: { - ...highlightSeriesOpts, - highlightCircleSize: 0, - }, } } diff --git a/ui/src/shared/graphs/helpers.js b/ui/src/shared/graphs/helpers.js index 85e5aa3b7..a9e9a6ce4 100644 --- a/ui/src/shared/graphs/helpers.js +++ b/ui/src/shared/graphs/helpers.js @@ -190,10 +190,6 @@ export const OPTIONS = { highlightSeriesBackgroundColor: 'rgb(41, 41, 51)', } -export const highlightSeriesOpts = { - highlightCircleSize: 5, -} - export const hasherino = (str, len) => str .split('')