* update lv_obj_refresh_style describtion.
* cursor added.
* refresh chart after setting the cursor
* add new direction and a bug fixed.
* fixed the wrong changes for header file.
* rename lv_cursor_direction_t enum members.
* add lv_chart_get_x_from_index and lv_chart_get_y_from_index
* lv_chart_get_x_from_index supports column chart type too.
* fix the error of no lv_coord_t value return.
* fix a bug based on the coord is with respect to the series area.
* make get_series_area function global.
* fix the name of get_series_area function.
* add the description of the added functions.
* chart cursor minor fixes
Co-authored-by: Gabor Kiss-Vamosi <kisvegabor@gmail.com>
* PXP: Updated area threshold, fixed symbol names, minor fixes
- Area threshold of 1 left from debugging, changed to 32 for performance
reasons.
- Fixed naming convention of symbols (prefix LV_GPU_)
- Fixed include paths (no need to add src folder into include paths)
- Comments changed to doxygen
Signed-off-by: Jozef Bastek <jozef.bastek@nxp.com>
* PXP: Code formatting
Applied code-format.sh script.
Signed-off-by: Jozef Bastek <jozef.bastek@nxp.com>
* Corrected bug in styles of labels with selections
Text selection color (text_selection_color) property was incorrectly
being applied to the text color if there was a selection. The sel_color
property in the label descriptor was initialized to blue. This property
was intended to be the label background color under a selection.
* Add new property for the color of selected text
New property for labels: text_sel_font_color
This property will change the color of the font within selected text.
* Rename text selection color properties
Per feedback from issue #1820, sel_color is now sel_bg_color and
sel_font_color is now sel_color. This results in clearer naming.
Co-authored-by: Ryan Powers <ryan.powers@envision-tek.com>