This is an automated email from the git hooks/post-receive script.
git pushed a commit to branch master
in repository echart.
View the commit online.
commit 724df989d42710935ddbe1a02e69dc20a1c7f068
Author: Vincent Torri <[email protected]>
AuthorDate: Wed May 27 07:40:36 2026 +0200
fix
---
src/bin/echart_main.c | 9 ++++++++-
1 file changed, 8 insertions(+), 1 deletion(-)
diff --git a/src/bin/echart_main.c b/src/bin/echart_main.c
index e42391c..40f5bb7 100644
--- a/src/bin/echart_main.c
+++ b/src/bin/echart_main.c
@@ -109,10 +109,17 @@ elm_main(int argc, char **argv)
yo = 0;
o = line = echart_line_add(evas_object_evas_get(win));
- echart_line_bicubic_set(o, EINA_TRUE);
+ echart_line_cubic_set(o, EINA_TRUE);
evas_object_move(o, xo, yo);
evas_object_resize(o, wo, ho);
echart_line_data_append(o, d, num);
+ d[0] = 5.5;
+ d[1] = 2.7;
+ d[2] = -2.3;
+ d[3] = 3.9;
+ d[4] = 6.2;
+ d[5] = -3.4;
+ echart_line_data_append(o, d, num);
echart_line_width_set(o, 3);
evas_object_show(o);
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.