#[no_mangle]
pub extern "C" fn ratatui_chart_begin(
handle: *mut c_void,
area_id: u32,
)Expand description
Starts a Chart builder.
Builder lifecycle:
ratatui_chart_begin— open the builder forarea_id.- Optionally
ratatui_chart_x_axisand/orratatui_chart_y_axis— set axis titles and bounds. - Zero or more
ratatui_chart_datasetcalls — add datasets. ratatui_chart_end— flush the builder into the command queue.
Only one chart builder may be active at a time per handle.