Lines 907-912
canned reports and writing custom SQL reports.</p>
Link Here
|
907 |
headers = [% header_row.json %]; |
907 |
headers = [% header_row.json %]; |
908 |
var results = [% results.json %] |
908 |
var results = [% results.json %] |
909 |
|
909 |
|
|
|
910 |
if ($('input[name="chart-exclude-last"]').prop('checked')) { |
911 |
results.splice(-1, 1); |
912 |
} |
913 |
|
910 |
$('select[name="y"]').each(function( index ) { |
914 |
$('select[name="y"]').each(function( index ) { |
911 |
y_elements.push( $(this).val() ); |
915 |
y_elements.push( $(this).val() ); |
912 |
}); |
916 |
}); |
913 |
- |
|
|