UNPKG

thalassa-consul

Version:
37 lines (26 loc) 824 B
Rickshaw.namespace('Rickshaw.Graph.Axis.Y.Scaled'); Rickshaw.Graph.Axis.Y.Scaled = Rickshaw.Class.create( Rickshaw.Graph.Axis.Y, { initialize: function($super, args) { if (typeof(args.scale) === 'undefined') { throw new Error('Scaled requires scale'); } this.scale = args.scale; if (typeof(args.grid) === 'undefined') { this.grid = true; } else { this.grid = args.grid; } $super(args); }, _drawAxis: function($super, scale) { // make a copy of the custom scale, adjust the range to match the graph's scale var adjustedScale = this.scale.copy().range(scale.range()); return $super(adjustedScale); }, _drawGrid: function($super, axis) { if (this.grid) { // only draw the axis if the grid option is true $super(axis); } } } );