Lines Matching refs:title

38 static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const…
555 lv_obj_t * title = lv_label_create(chart1_cont); in analytics_create() local
556 lv_label_set_text(title, "Unique visitors"); in analytics_create()
557 lv_obj_add_style(title, &style_title, 0); in analytics_create()
558 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 2, LV_GRID_ALIGN_START, 0, 1); in analytics_create()
599 title = lv_label_create(chart2_cont); in analytics_create()
600 lv_label_set_text(title, "Monthly revenue"); in analytics_create()
601 lv_obj_add_style(title, &style_title, 0); in analytics_create()
602 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 2, LV_GRID_ALIGN_START, 0, 1); in analytics_create()
802 lv_obj_t * title = lv_label_create(panel1); in shop_create() local
803 lv_label_set_text(title, "Monthly Summary"); in shop_create()
804 lv_obj_add_style(title, &style_title, 0); in shop_create()
855 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 0, 1); in shop_create()
875 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_CENTER, 0, 1); in shop_create()
898 lv_obj_set_grid_cell(title, LV_GRID_ALIGN_START, 0, 1, LV_GRID_ALIGN_START, 0, 1); in shop_create()
919 title = lv_label_create(list); in shop_create()
920 lv_label_set_text(title, "Top products"); in shop_create()
921 lv_obj_add_style(title, &style_title, 0); in shop_create()
943 title = lv_label_create(notifications); in shop_create()
944 lv_label_set_text(title, "Notification"); in shop_create()
945 lv_obj_add_style(title, &style_title, 0); in shop_create()
1106 static lv_obj_t * create_meter_box(lv_obj_t * parent, const char * title, const char * text1, const… in create_meter_box() argument
1114 lv_label_set_text(title_label, title); in create_meter_box()