|
Lines 935-940
canned reports and writing custom SQL reports.</p>
Link Here
|
| 935 |
$('.chart-column-delete').remove(); |
935 |
$('.chart-column-delete').remove(); |
| 936 |
} |
936 |
} |
| 937 |
|
937 |
|
|
|
938 |
$(".chart-column-delete").on('click', function(e){ |
| 939 |
e.preventDefault(); |
| 940 |
removeColumn('column_' + $(this).data('column')); |
| 941 |
}) |
| 938 |
|
942 |
|
| 939 |
$('#download-chart').click(function() { |
943 |
$('#download-chart').click(function() { |
| 940 |
var svg = '<svg>' + $('#chart svg').html() + '</svg>'; |
944 |
var svg = '<svg>' + $('#chart svg').html() + '</svg>'; |
| 941 |
- |
|
|