Lines 965-970
canned reports and writing custom SQL reports.</p>
Link Here
|
965 |
headers = [% header_row.json %]; |
965 |
headers = [% header_row.json %]; |
966 |
var results = [% results.json %] |
966 |
var results = [% results.json %] |
967 |
|
967 |
|
|
|
968 |
if ($('input[name="chart-exclude-last"]').prop('checked')) { |
969 |
results.splice(-1, 1); |
970 |
} |
971 |
|
968 |
$('select[name="y"]').each(function( index ) { |
972 |
$('select[name="y"]').each(function( index ) { |
969 |
y_elements.push( $(this).val() ); |
973 |
y_elements.push( $(this).val() ); |
970 |
}); |
974 |
}); |
971 |
- |
|
|