android - CandleStick Chart:Replication of open and close displayed values while zooming -


enter image description herevalues 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

Popular posts from this blog

Spring Boot + JPA + Hibernate: Unable to locate persister -

go - Golang: panic: runtime error: invalid memory address or nil pointer dereference using bufio.Scanner -

c - double free or corruption (fasttop) -