GraphNG: Minor polish & updates to new time series panel and move it from alpha to beta (#30163)

* GraphNG: Minor polish & updates to new time series panel

* Fixed gradient default

* Updated snapshot
This commit is contained in:
Torkel Ödegaard
2021-01-10 17:41:20 +01:00
committed by GitHub
parent 1bc0cff736
commit ba158e72df
8 changed files with 49 additions and 36 deletions

View File

@ -153,7 +153,7 @@ export function flotToGraphOptions(angular: any): { fieldConfig: FieldConfigSour
});
rule.properties.push({
id: 'custom.fillOpacity',
value: 1, // solid bars
value: 100, // solid bars
});
} else {
rule.properties.push({
@ -245,7 +245,7 @@ export function flotToGraphOptions(angular: any): { fieldConfig: FieldConfigSour
}
if (graph.drawStyle === DrawStyle.Bars) {
graph.fillOpacity = 1.0; // bars were always
graph.fillOpacity = 100; // bars were always
}
y1.custom = omitBy(graph, isNil);