smruti-bapi / dwpe

Automatically exported from code.google.com/p/dwpe
MIT License
0 stars 0 forks source link

Error in IE when there is a zero in the last column (bar chart) #55

Open GoogleCodeExporter opened 8 years ago

GoogleCodeExporter commented 8 years ago
I noticed that in the bar chart, when the last cell in a row includes a zero, 
the bar for that row is not shown in the chart.
Occurs only in IE.

A sample. In this table the bar for the row "Sended" is not shown in the chart. 
If you change the "0" from the last "td" of the second row to "1" or "0.1" it 
works fine.

<table class="visualize1">
  <caption>Bar Chart Title</caption>
  <thead>
    <tr>
           <td></td>
           <th scope="col">Sep</th>
           <th scope="col">Oct</th>
           <th scope="col">Nov</th>
           <th scope="col">Dec</th>
           <th scope="col">Jan</th>
          </tr>
         </thead>
         <tbody>
          <tr>
           <th scope="row">Sended</th>
           <td>2</td>
           <td>1</td>
           <td>6</td>
           <td>6</td>
           <td>0</td>
          </tr>
          <tr>
           <th scope="row">Payed</th>
           <td>1</td>
           <td>1</td>
           <td>3</td>
           <td>0</td>
           <td>3</td>
          </tr>
          <tr>
           <th scope="row">Unpayed</th>
           <td>1</td>
           <td>1</td>
           <td>3</td>
           <td>6</td>
           <td>1</td>
          </tr>
         </tbody>
        </table>

Original issue reported on code.google.com by ajapari...@gmail.com on 11 Jan 2011 at 7:21

GoogleCodeExporter commented 8 years ago
Sorry, I had not seen the issue 21. Please remove this bug report.

Original comment by ajapari...@gmail.com on 11 Jan 2011 at 7:25