mirror of
https://github.com/grafana/grafana.git
synced 2025-02-25 18:55:37 -06:00
graph: dashes option only used in series overrides
Removes dashes option from Display tab so that it is only available for series overrides. Also removes options for dash space and length in series overrides and just uses the default values of 10 for both of them.
This commit is contained in:
@@ -90,8 +90,6 @@ export default class TimeSeries {
|
||||
this.lines.lineWidth = override.linewidth;
|
||||
this.dashes.lineWidth = override.linewidth;
|
||||
}
|
||||
if (override.dashLength !== void 0) { this.dashes.dashLength[0] = override.dashLength; }
|
||||
if (override.spaceLength !== void 0) { this.dashes.dashLength[1] = override.spaceLength; }
|
||||
if (override.nullPointMode !== void 0) { this.nullPointMode = override.nullPointMode; }
|
||||
if (override.pointradius !== void 0) { this.points.radius = override.pointradius; }
|
||||
if (override.steppedLine !== void 0) { this.lines.steps = override.steppedLine; }
|
||||
|
||||
Reference in New Issue
Block a user