Renders a Seaborn line chart as an inline SVG image using query result data.
IMAGELINE — set as ReportType in def_report.
def Render(self, param1: str = "", param2: str = "", param3: str = "") -> str:
Parameters are unused. Expects the query to return at least two columns: the first column is used as the X axis and the second as the Y axis. Field names are taken from self.FieldNames and used as axis labels and the chart title. The chart is rendered as SVG via Matplotlib's SVG backend and embedded directly in the HTML. Returns an HTML string containing the SVG.
Requires pandas, seaborn, and matplotlib. Uses whitegrid Seaborn theme with blue markers (marker="o"). X-axis tick labels are hidden. Output SVG is wrapped in an 800x600 SVG element with a white background.