android - CandleStick Chart:Replication of open and close displayed values while zooming -
values getting replicated in candlestick chart.
whenever zoom chart open , close values cloned without candlestickbar
i.e values displayed, stuck many hours.
lineandpointformatter lpf = new lineandpointformatter(color.blue, color.red, null, null); pointlabelformatter pointlabelformatterr=new pointlabelformatter(); pointlabelformatterr.gettextpaint().setcolor(color.parsecolor("#000000")); lpf.setpointlabelformatter(pointlabelformatterr); plot.addseries(openvals, lpf); lineandpointformatter lpf1 = new lineandpointformatter(null, null, null, null); pointlabelformatter pointlabelformatterr1=new pointlabelformatter(); pointlabelformatterr1.gettextpaint().setcolor(color.parsecolor("#000000")); pointlabelformatterr1.voffset=40; lpf1.setpointlabelformatter(pointlabelformatterr1); plot.addseries(closevals, lpf1);
Comments
Post a Comment