Renders a two-series ApexCharts line graph comparing successful and unsuccessful debit order counts by splitting the data list in half.
Promotion — set as ReportType in def_report.
def Render(self, Param1="", Param2="", Param3="") -> str:
No parameters are used. The data list is split at its midpoint; the first half provides the "Successfull" series and the second half provides the "Unsuccessfull" series. Each row supplies an x-value (column 0) and a y-value (column 1). Returns an HTML string with an inline <script> block.
Requires the apexcharts/apexcharts resource script. The series colours are hardcoded: #c8e1cc (green) for successful and #ff6961 (red) for unsuccessful. The curve is set to smooth and the toolbar is hidden.