Lines Matching refs:chart3

75 static lv_obj_t * chart3;  variable
818 chart3 = lv_chart_create(panel1); in shop_create()
819 lv_chart_set_axis_tick(chart3, LV_CHART_AXIS_PRIMARY_Y, 0, 0, 6, 1, true, 80); in shop_create()
820 lv_chart_set_axis_tick(chart3, LV_CHART_AXIS_PRIMARY_X, 0, 0, 7, 1, true, 50); in shop_create()
821 lv_chart_set_type(chart3, LV_CHART_TYPE_BAR); in shop_create()
822 lv_chart_set_div_line_count(chart3, 6, 0); in shop_create()
823 lv_chart_set_point_count(chart3, 7); in shop_create()
824 lv_obj_add_event_cb(chart3, shop_chart_event_cb, LV_EVENT_ALL, NULL); in shop_create()
826 ser4 = lv_chart_add_series(chart3, lv_theme_get_color_primary(chart3), LV_CHART_AXIS_PRIMARY_Y); in shop_create()
827 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
828 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
829 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
830 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
831 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
832 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
833 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
834 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
835 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
836 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
837 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
838 lv_chart_set_next_value(chart3, ser4, lv_rand(60, 90)); in shop_create()
851 lv_obj_set_size(chart3, lv_pct(100), lv_pct(100)); in shop_create()
852 lv_obj_set_style_pad_column(chart3, LV_DPX(30), 0); in shop_create()
859 lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_STRETCH, 1, 1, LV_GRID_ALIGN_STRETCH, 0, 5); in shop_create()
871 lv_obj_set_width(chart3, lv_obj_get_content_width(panel1) - 20); in shop_create()
872 lv_obj_set_style_pad_column(chart3, LV_DPX(30), 0); in shop_create()
879 lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_END, 0, 2, LV_GRID_ALIGN_STRETCH, 2, 1); in shop_create()
892 lv_obj_set_width(chart3, LV_PCT(95)); in shop_create()
893 lv_obj_set_height(chart3, LV_VER_RES - 70); in shop_create()
894 lv_obj_set_style_max_height(chart3, 300, 0); in shop_create()
895 lv_chart_set_zoom_x(chart3, 512); in shop_create()
902 lv_obj_set_grid_cell(chart3, LV_GRID_ALIGN_END, 0, 1, LV_GRID_ALIGN_START, 4, 1); in shop_create()