Browse Source

Add option for the number of ticks in PromConsole.Graph (#9223)

Signed-off-by: Dorian Jaminais-Grellier <dorian@jaminais.fr>
pull/9226/head
Dorian JAMINAIS 3 years ago committed by GitHub
parent
commit
05dba96ebf
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 5
      web/ui/static/js/prom_console.js

5
web/ui/static/js/prom_console.js

@ -320,6 +320,8 @@ PromConsole.graphDefaults = {
yTitle: "", // The title of the y axis.
// Number formatter for y axis.
yAxisFormatter: PromConsole.NumberFormatter.humanize,
// Number of ticks (horizontal lines) for the y axis
yAxisTicks: null,
// Number formatter for y values hover detail.
yHoverFormatter: PromConsole.NumberFormatter.humanizeExact,
// Color scheme to be used by the plots. Can be either a list of hex color
@ -529,7 +531,8 @@ PromConsole.Graph.prototype._render = function(data) {
});
var yAxis = new Rickshaw.Graph.Axis.Y({
graph: graph,
tickFormat: this.params.yAxisFormatter
tickFormat: this.params.yAxisFormatter,
ticks: this.params.yAxisTicks
});
var xAxis = new Rickshaw.Graph.Axis.Time({
graph: graph,

Loading…
Cancel
Save