Is there any way to remove the truncated from the names of the chart-legend? Lots of wasted space.
Eugene, your document is spectacular and greatly appreciated.
This is a big long-term maintenance problem.
Have you found a way to include Script Reports into backups, for example?
A symlink into the private files directory would work, I think.
You can store report files in your custom apps folder. Play with the “Is Standart” and “Module” settings. Then the files will be stored in your custom app’s folder.
Yeah!
I see that that works. Thank you.
good idea
for my issue it’s work
thankyou
How to remove or hide series no in script report…
On click of down arrow from column, you can able to remove. Or if you want permanently remove just comment the code in python file.
Thanks for replay. But it is default column. Not showing any arrow in that columns
@EugeneP , if I need to print some dynamic value in print template, how do you do that? Server call/Get value from DB call doesn’t work inside report html print format. I cannot pass this as either from the execute function. The only allowed ones are column, data, message, chart and report summary. Is there a way to add value to report context object that can be accessed inside html?
Hi @EugeneP,
Thanks for an excellent tutorial on Reports & Charts. Very informative, with clear examples !
Hey, @zulfi007 ,
" The function get_datatable_options(options) generates a checkbox column. Upon clicking the ‘Get Selected’ button, it fetches data from the selected row in the report."
frappe.query_reports[‘Report Name’] = {
onload: function(report) {
frappe.query_report.page.add_inner_button(__(“Get Selected”), function() {
var selectedRows = [];
$(‘.dt-scrollable’).find(“:input[type=checkbox]“).each((idx, row) => {
if (row.checked) {
console.log(“*** selected row id : ” + idx);
selectedRows.push(frappe.query_report.data[idx]);
}
});
console.log("Selected row: " selectedRows)
})
get_datatable_options(options) {
return Object.assign(options, {
checkboxColumn: true
});
}
}
}
Hi, I want create custom chart in dashboard , to create graph of that month so
How can i do two chart or more in one script report