d6y / jchav

JChav is a way to see the change in performance of your web application over time, by running a benchmark test for each build you produce.
http://jchav.blogspot.com/
3 stars 0 forks source link

Image at the top of report summary is cropped when many result runs are compared, resulting in missing data #24

Closed GoogleCodeExporter closed 9 years ago

GoogleCodeExporter commented 9 years ago
What steps will reproduce the problem?
1. Setup Jchav 1.1.1
2. Run Jchav against a Jmeter project using ant that aggregates several
different timestamped runs to generate a historical summary graph with many
results in a report.
3. View the report.  The summary image at the top crops the results that
are on the right side of the graph.

What is the expected output? What do you see instead?
The expected output would be a complete graph.  

What version of the product are you using? On what operating system?
1.1.1 using ubuntu 7.04, firefox 2.

Please provide any additional information below.

This can be fixed by modifying the style.css file as follows:

OLD:
div.summary

{

    clear: both;

    display:block;

    overflow:hidden;

    width: 50%;

    margin-left: auto;

    margin-right: auto;

    border: 1px;

    border-color: black;

    border-style: solid;

    padding: 3px;

}

NEW:
div.summary

{

    clear: both;

    display:block;

    overflow:hidden;

    width: 100%;

    margin-left: auto;

    margin-right: auto;

    border: 1px;

    border-color: black;

    border-style: solid;

    padding: 3px;

}

Original issue reported on code.google.com by paul.bli...@gmail.com on 29 Sep 2008 at 8:11

GoogleCodeExporter commented 9 years ago

Original comment by dalla...@gmail.com on 10 Jul 2009 at 3:15

GoogleCodeExporter commented 9 years ago
Thank you! These changes will be in release 1.1.2

Original comment by dalla...@gmail.com on 10 Jul 2009 at 3:26