visual testing

This commit is contained in:
2026-04-06 03:17:30 +03:00
parent 53ba44e2f9
commit f04c39cb69
29 changed files with 2575 additions and 76 deletions

View File

@@ -118,6 +118,24 @@ pub struct ChartRenderData {
pub line_width: Option<f64>,
#[serde(default)]
pub background_color: Option<String>,
// Label color
#[serde(default)]
pub label_color: Option<String>,
// Legend
#[serde(default)]
pub legend_show: bool,
#[serde(default)]
pub legend_position: Option<String>,
#[serde(default)]
pub legend_font_size: Option<f64>,
// Axis labels
#[serde(default)]
pub x_label: Option<String>,
#[serde(default)]
pub y_label: Option<String>,
// Title align
#[serde(default)]
pub title_align: Option<String>,
}
#[derive(Debug, Clone, Serialize, Deserialize)]