Search found 5 matches
- Mon Mar 05, 2012 3:20 pm
- Forum: Java
- Topic: Android Chart two line series bug.
- Replies: 1
- Views: 7737
Android Chart two line series bug.
I have added a chart to a list view item. The strange thing is the scroll artifact that is created at the top and the bottom. I have tried changing a few things and determined that the second Line() added to the chart is the one that appears as the defect. public class TimeSeriesRollingIntradayGraph...
- Mon Mar 05, 2012 1:11 pm
- Forum: Java
- Topic: Android - Line Series - Disable selection
- Replies: 1
- Views: 7644
Re: Android - Line Series - Disable selection
Zoom. That seems to do the trick.
Code: Select all
tChart.getZoom().setAllow(false);
- Mon Mar 05, 2012 12:20 pm
- Forum: Java
- Topic: Android Line Chart
- Replies: 2
- Views: 9649
Re: Android Line Chart
Code: Select all
this.mSparkline = new Line();
mSparkline.setColor(Color.DARK_GRAY);
mSparkline.getLinePen().setWidth(2);
this.addSeries(mSparkline);
- Mon Mar 05, 2012 12:15 pm
- Forum: Java
- Topic: Android - Line Series - Disable selection
- Replies: 1
- Views: 7644
Android - Line Series - Disable selection
I want to disable TChart from catching touches. Anyone know where that is buried?
- Mon Mar 05, 2012 12:12 pm
- Forum: Java
- Topic: Android - Line Series - Dashed Line Width
- Replies: 1
- Views: 7383
Android - Line Series - Dashed Line Width
DashStyle previousCloseLineStyle = DashStyle.DASH; previousCloseLineStyle.setDashWidth(3); this.mPreviousClose = new Line(); mPreviousClose.setColor(Color.lightGray); mPreviousClose.getLinePen().setStyle(previousCloseLineStyle); It seems no entered value impacts the dash width. Anyone else seeing t...