mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
This commit is contained in:
parent
1a6c2ea8d8
commit
08211eb220
@ -18,6 +18,7 @@ import GraphTooltip from './graph_tooltip';
|
||||
import { ThresholdManager } from './threshold_manager';
|
||||
import { EventManager } from 'app/features/annotations/all';
|
||||
import { convertValuesToHistogram, getSeriesValues } from './histogram';
|
||||
import config from 'app/core/config';
|
||||
|
||||
/** @ngInject **/
|
||||
function graphDirective(timeSrv, popoverSrv, contextSrv) {
|
||||
@ -286,6 +287,10 @@ function graphDirective(timeSrv, popoverSrv, contextSrv) {
|
||||
}
|
||||
|
||||
function buildFlotOptions(panel) {
|
||||
let gridColor = '#c8c8c8';
|
||||
if (config.bootData.user.lightTheme === true) {
|
||||
gridColor = '#a1a1a1';
|
||||
}
|
||||
const stack = panel.stack ? true : null;
|
||||
let options = {
|
||||
hooks: {
|
||||
@ -332,7 +337,7 @@ function graphDirective(timeSrv, popoverSrv, contextSrv) {
|
||||
borderWidth: 0,
|
||||
hoverable: true,
|
||||
clickable: true,
|
||||
color: '#c8c8c8',
|
||||
color: gridColor,
|
||||
margin: { left: 0, right: 0 },
|
||||
labelMarginX: 0,
|
||||
},
|
||||
|
Loading…
Reference in New Issue
Block a user