I am very new using emWin and I have the following question:
I have a text window with a text "Measurement"
ta = TEXT_CreateEx(140, 100, 150, 20, myProc->win, WM_CF_SHOW, GUI_TA_LEFT | GUI_TA_VCENTER, id++, "Measurement");
TEXT_SetFont(ta, FONT4);
TEXT_SetBkColor(ta, 0xccffff);
and I would like to add a line above the label "Measurement" in order to inform that what follows is an "average value" (let's assume that I cannot use a more elegant solution applying the proper set of fonts for this purpose).
How can I achieve this goal? I read some comments regarding using the callback of the window. However, I could not see a simple piece of code demonstrating how to do this.
Any hints?
Thank you