Among the uibooster library examples, it is related to ‘table’. Is it possible to change?
Please refer to the image.
source code
import uibooster.*;
UiBooster booster;
void setup() {
size(800, 400);
booster = new UiBooster();
// user showTableImmutable() for immutable tables
String[][] modifiedData = booster.showTable(
new String[][]{ // data in 2d array
{"Jimmy Johnson", "35", "Zombieland"},
{"Danny Durango", "23", "Hangover"},
{"Larry Berry", "54", ""}
},
new String[] {"Name", "Age", "Favorite movie" }, // header
"Favorite movies");
println(modifiedData);
// window title
}
void draw() {
background(10);
}
Can’t you adjust the size of ‘W1’, ‘W2’, and ‘W3’ before the ‘table’ window opens?