Lines 878-883
canned reports and writing custom SQL reports.</p>
Link Here
|
878 |
headers = [% header_row.json %]; |
878 |
headers = [% header_row.json %]; |
879 |
var results = [% results.json %] |
879 |
var results = [% results.json %] |
880 |
|
880 |
|
|
|
881 |
if ($('input[name="chart-exclude-last"]').prop('checked')) { |
882 |
results.splice(-1, 1); |
883 |
} |
884 |
|
881 |
$('select[name="y"]').each(function( index ) { |
885 |
$('select[name="y"]').each(function( index ) { |
882 |
y_elements.push( $(this).val() ); |
886 |
y_elements.push( $(this).val() ); |
883 |
}); |
887 |
}); |
884 |
- |
|
|