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