1
0
mirror of https://github.com/lvgl/lvgl.git synced 2025-01-14 06:42:58 +08:00

chart: fix dafault max axis label string length

This commit is contained in:
Gabor Kiss-Vamosi 2020-04-12 14:49:50 +02:00
parent ccbf4373af
commit f0a8eb8d1a
2 changed files with 2 additions and 2 deletions

View File

@ -442,7 +442,7 @@ typedef void * lv_obj_user_data_t;
/*Chart (dependencies: -)*/
#define LV_USE_CHART 1
#if LV_USE_CHART
# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 20
# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 256
#endif
/*Container (dependencies: -*/

View File

@ -621,7 +621,7 @@
#endif
#if LV_USE_CHART
#ifndef LV_CHART_AXIS_TICK_LABEL_MAX_LEN
# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 20
# define LV_CHART_AXIS_TICK_LABEL_MAX_LEN 256
#endif
#endif