Textbox 1textbox(x, y, w, h, str); Plot C++ 1 2 3 4 5 6 7 8 9 10 11 12#include <cmath> #include <matplot/matplot.h> int main() { using namespace matplot; plot(iota(1, 10)); textbox(2, 8, 4, 0.5, "String line from 1 to 10"); show(); return 0; }