About List Label Size

Hello. How can I increase or decrease the text of the items in the list, independent of viewNumber? Furthermore, I'd like to control the text's thickness. Is this possible?

For the List, you can set noScale:true and pass in a list of Label() objects.

For the thickness, you can set a STYLE = {bold:true}

Other than that, choose different fonts. The bold is the only setting the canvas has for thickness as far as I know.

Let us know how it goes... if it still does not work for you, maybe we can help create an example, etc.

    listUsr.items.forEach(btn => { if (btn.label){ btn.label.font="ABC_1_Vural_2024_Kalin"; btn.label.size=30; btn.label.bold=true; btn.label.color="#000"; } });
     listUsr.update();

I did it with a for loop. Thank you.

1 Like