class Chart(GeneratedChart)Base chart class. All chart types inherit from this. Fields are sourced from the daemon’s typed response.
ChartType
Section titled “ChartType”class ChartType(str, Enum)Supported chart types returned by the daemon’s code-run endpoint.
PointData
Section titled “PointData”class PointData(GeneratedChartElement)Data element for line and scatter charts. Fields: label, points.
BarData
Section titled “BarData”class BarData(GeneratedChartElement)Data element for bar charts. Fields: label, value, group.
PieData
Section titled “PieData”class PieData(GeneratedChartElement)Data element for pie charts. Fields: label, angle, radius.
BoxAndWhiskerData
Section titled “BoxAndWhiskerData”class BoxAndWhiskerData(GeneratedChartElement)Data element for box-and-whisker charts. Fields: label, min, first_quartile, median, third_quartile, max, outliers.
Chart2D
Section titled “Chart2D”class Chart2D(Chart)Chart with x/y axes. Adds x_label, y_label fields.
PointChart
Section titled “PointChart”class PointChart(Chart2D)Chart with axis ticks and scales. Adds x_ticks, y_ticks, x_scale, y_scale fields.
LineChart
Section titled “LineChart”class LineChart(PointChart)Line chart. Elements are PointData.
ScatterChart
Section titled “ScatterChart”class ScatterChart(PointChart)Scatter plot. Elements are PointData.
BarChart
Section titled “BarChart”class BarChart(Chart2D)Bar chart. Elements are BarData.
PieChart
Section titled “PieChart”class PieChart(Chart)Pie chart. Elements are PieData.
BoxAndWhiskerChart
Section titled “BoxAndWhiskerChart”class BoxAndWhiskerChart(Chart2D)Box-and-whisker chart. Elements are BoxAndWhiskerData.
CompositeChart
Section titled “CompositeChart”class CompositeChart(Chart)Composite chart containing multiple sub-charts as elements.