packages.ufo: fix plot

This commit is contained in:
陈浩南 2024-09-18 16:41:48 +08:00
parent 82f2e9e880
commit 7614f54302

View File

@ -365,7 +365,7 @@ void ufo::plot_point(std::string config_file)
biu::Logger::Guard log;
auto f = matplot::figure(true);
auto ax = f->current_axes();
auto image = ax->area(values);
auto image = ax->area(values, 0, false, "");
ax->y_axis().reverse(false);
ax->x_axis().tick_values(x_ticks);
ax->x_axis().tick_length(1);