Java Code Examples for com.github.mikephil.charting.data.LineDataSet#Mode
The following examples show how to use
com.github.mikephil.charting.data.LineDataSet#Mode .
You can vote up the ones you like or vote down the ones you don't like,
and go to the original project or source file by following the links above each example. You may check out the related API usage on the sidebar.
Example 1
Source File: ILineDataSet.java From StockChart-MPAndroidChart with MIT License | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ LineDataSet.Mode getMode();
Example 2
Source File: ILineDataSet.java From Ticket-Analysis with MIT License | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ LineDataSet.Mode getMode();
Example 3
Source File: ILineDataSet.java From android-kline with Apache License 2.0 | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ LineDataSet.Mode getMode();
Example 4
Source File: RealmLineDataSet.java From NetKnight with Apache License 2.0 | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ @Override public LineDataSet.Mode getMode() { return mMode; }
Example 5
Source File: RealmLineDataSet.java From NetKnight with Apache License 2.0 | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ public void setMode(LineDataSet.Mode mode) { mMode = mode; }
Example 6
Source File: ILineDataSet.java From NetKnight with Apache License 2.0 | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ LineDataSet.Mode getMode();
Example 7
Source File: RealmLineDataSet.java From MPAndroidChart-Realm with Apache License 2.0 | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ @Override public LineDataSet.Mode getMode() { return mMode; }
Example 8
Source File: RealmLineDataSet.java From MPAndroidChart-Realm with Apache License 2.0 | 2 votes |
/** * Returns the drawing mode for this line dataset * * @return */ public void setMode(LineDataSet.Mode mode) { mMode = mode; }