##// END OF EJS Templates
increase base height of author lines on 'Commits per author' graph (#14068, #1983)...
Toshi MARUYAMA -
r11617:559aa626cd24
parent child
Show More
@@ -411,7 +411,7 class RepositoriesController < ApplicationController
411 fields = fields.collect {|c| c.gsub(%r{<.+@.+>}, '') }
411 fields = fields.collect {|c| c.gsub(%r{<.+@.+>}, '') }
412
412
413 graph = SVG::Graph::BarHorizontal.new(
413 graph = SVG::Graph::BarHorizontal.new(
414 :height => 15 * commits_data.length,
414 :height => 30 * commits_data.length,
415 :width => 800,
415 :width => 800,
416 :fields => fields,
416 :fields => fields,
417 :stack => :side,
417 :stack => :side,
General Comments 0
You need to be logged in to leave comments. Login now