limc.cn
limc.cn
By inserting this code below to RoseChart.java( Line 119), you can make it possible to get the chart you want. ``` Paint mPaintFillCircleBackgroud = new Paint(); mPaintFillCircleBackgroud.setStyle(Style.FILL); mPaintFillCircleBackgroud.setColor(Color.LTGRAY); mPaintFillCircleBackgroud.setAntiAlias(true); canvas.drawCircle(position.x,...
RoseChart is also a subclass of RoundChart, you can simply use `chart.setDescription()` to set the description text you want. drawing text you can use this code below ``` Paint mPaintFont...
if the code did not work. you can simply add TextView float over the chart. rosechart is also a subclass of View. so you can use rosechart like the way...
接口已提交,建议使用v0.2版本分支,master分支的代码目前正在重构代码。
用Master On 6/15/15, zhangkevd [email protected] wrote: > 现在还是建议使用V0.2的分支吗? > > --- > > Reply to this email directly or view it on GitHub: > https://github.com/limccn/Android-Charts/issues/5#issuecomment-111898409
There are 2 ways to hide the cross lines, you can choose the way you want. 1. Set touched point to (0,0) or (-1,-1) use `setTouchPoint` method in `cn.limc.androidcharts.common.CrossLines.GridChart` when...
the demo in develop branch may help you. if you have any question when use this library, be easy to mail me. thanks. https://github.com/limccn/Android-Charts/tree/develop On Wed, Jul 27, 2016 at...
我们知道Android的View的更新是强制在UI线程中进行的,而实时获取数据和处理数据的过程一般会放在子线程中进行。考虑到线程安全性和UI线程的负载,Android-Charts的UI更新需要使用手动方式实现。 在调用完setStickData或setLinesData后,如果你在UI线程中更新chart请使用invalidate进行更新,子线程中更新请使用postInvalidate进行更新。如果你能确定你使用哪种方式更新,请直接修改setStickData或setLinesData的代码即可。 另外,Android-Charts中数据对象的setter使用的是引用赋值而非对象copy,在UI线程和子线程中同时操作数据对象都是可以的。可以在子线程设置和修改数据,UI线程读取并更新chart。考虑到ArrayList是线程不安全的,如果有复杂的线程操作要求,可以考虑加上synchronized关键字强制线程同步

The retrun value of - 1 is usually the following two error cases,defined in `MT4RedisPlugin.h` `#define MT4_REDIS_ERR -1 /* Error */` `#define MT4_REDIS_CMD_FAILED -1 /* Failed */` First, check that...