Work on scatterdataset copy

This commit is contained in:
Philipp Jahoda 2016-06-18 00:56:04 +02:00
parent 735a9b9c98
commit f75ea845e0

View file

@ -53,13 +53,16 @@ public class ScatterDataSet extends LineScatterCandleRadarDataSet<Entry> impleme
}
ScatterDataSet copied = new ScatterDataSet(yVals, getLabel());
copied.mDrawValues = mDrawValues;
copied.mValueColors = mValueColors;
copied.mColors = mColors;
copied.mShapeSize = mShapeSize;
copied.mScatterShape = mScatterShape;
copied.mScatterShapeHoleRadius = mScatterShapeHoleRadius;
copied.mScatterShapeHoleColor = mScatterShapeHoleColor;
//copied.mCustomScatterPath = mCustomScatterPath;
copied.mHighlightLineWidth = mHighlightLineWidth;
copied.mHighLightColor = mHighLightColor;
copied.mHighlightDashPathEffect = mHighlightDashPathEffect;
return copied;
}