Java Code Examples for com.github.mikephil.charting.components.Legend#getForm()
The following examples show how to use
com.github.mikephil.charting.components.Legend#getForm() .
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: LegendRenderer.java From iMoney with Apache License 2.0 | 6 votes |
/** * Draws the Legend-form at the given position with the color at the given * index. * * @param c canvas to draw with * @param x position * @param y position * @param index the index of the color to use (in the colors array) */ protected void drawForm(Canvas c, float x, float y, int index, Legend legend) { if (legend.getColors()[index] == ColorTemplate.COLOR_SKIP) return; mLegendFormPaint.setColor(legend.getColors()[index]); float formsize = legend.getFormSize(); float half = formsize / 2f; switch (legend.getForm()) { case CIRCLE: c.drawCircle(x + half, y, half, mLegendFormPaint); break; case SQUARE: c.drawRect(x, y - half, x + formsize, y + half, mLegendFormPaint); break; case LINE: c.drawLine(x, y, x + formsize, y, mLegendFormPaint); break; } }
Example 2
Source File: LegendRenderer.java From Stayfit with Apache License 2.0 | 6 votes |
/** * Draws the Legend-form at the given position with the color at the given * index. * * @param c canvas to draw with * @param x position * @param y position * @param index the index of the color to use (in the colors array) */ protected void drawForm(Canvas c, float x, float y, int index, Legend legend) { if (legend.getColors()[index] == ColorTemplate.COLOR_SKIP) return; mLegendFormPaint.setColor(legend.getColors()[index]); float formsize = legend.getFormSize(); float half = formsize / 2f; switch (legend.getForm()) { case CIRCLE: c.drawCircle(x + half, y, half, mLegendFormPaint); break; case SQUARE: c.drawRect(x, y - half, x + formsize, y + half, mLegendFormPaint); break; case LINE: c.drawLine(x, y, x + formsize, y, mLegendFormPaint); break; } }
Example 3
Source File: LegendRenderer.java From NetKnight with Apache License 2.0 | 6 votes |
/** * Draws the Legend-form at the given position with the color at the given * index. * * @param c canvas to draw with * @param x position * @param y position * @param index the index of the color to use (in the colors array) */ protected void drawForm(Canvas c, float x, float y, int index, Legend legend) { if (legend.getColors()[index] == ColorTemplate.COLOR_SKIP) return; mLegendFormPaint.setColor(legend.getColors()[index]); float formsize = legend.getFormSize(); float half = formsize / 2f; switch (legend.getForm()) { case CIRCLE: c.drawCircle(x + half, y, half, mLegendFormPaint); break; case SQUARE: c.drawRect(x, y - half, x + formsize, y + half, mLegendFormPaint); break; case LINE: c.drawLine(x, y, x + formsize, y, mLegendFormPaint); break; } }
Example 4
Source File: LegendRenderer.java From StockChart-MPAndroidChart with MIT License | 4 votes |
/** * Draws the Legend-form at the given position with the color at the given * index. * * @param c canvas to draw with * @param x position * @param y position * @param entry the entry to render * @param legend the legend context */ protected void drawForm( Canvas c, float x, float y, LegendEntry entry, Legend legend) { if (entry.formColor == ColorTemplate.COLOR_SKIP || entry.formColor == ColorTemplate.COLOR_NONE || entry.formColor == 0) { return; } int restoreCount = c.save(); Legend.LegendForm form = entry.form; if (form == Legend.LegendForm.DEFAULT) { form = legend.getForm(); } mLegendFormPaint.setColor(entry.formColor); final float formSize = Utils.convertDpToPixel( Float.isNaN(entry.formSize) ? legend.getFormSize() : entry.formSize); final float half = formSize / 2f; switch (form) { case NONE: // Do nothing break; case EMPTY: // Do not draw, but keep space for the form break; case DEFAULT: case CIRCLE: mLegendFormPaint.setStyle(Paint.Style.FILL); c.drawCircle(x + half, y, half, mLegendFormPaint); break; case SQUARE: mLegendFormPaint.setStyle(Paint.Style.FILL); c.drawRect(x, y - half, x + formSize, y + half, mLegendFormPaint); break; case LINE: { final float formLineWidth = Utils.convertDpToPixel( Float.isNaN(entry.formLineWidth) ? legend.getFormLineWidth() : entry.formLineWidth); final DashPathEffect formLineDashEffect = entry.formLineDashEffect == null ? legend.getFormLineDashEffect() : entry.formLineDashEffect; mLegendFormPaint.setStyle(Paint.Style.STROKE); mLegendFormPaint.setStrokeWidth(formLineWidth); mLegendFormPaint.setPathEffect(formLineDashEffect); mLineFormPath.reset(); mLineFormPath.moveTo(x, y); mLineFormPath.lineTo(x + formSize, y); c.drawPath(mLineFormPath, mLegendFormPaint); } break; } c.restoreToCount(restoreCount); }
Example 5
Source File: LegendRenderer.java From Ticket-Analysis with MIT License | 4 votes |
/** * Draws the Legend-form at the given position with the color at the given * index. * * @param c canvas to draw with * @param x position * @param y position * @param entry the entry to render * @param legend the legend context */ protected void drawForm( Canvas c, float x, float y, LegendEntry entry, Legend legend) { if (entry.formColor == ColorTemplate.COLOR_SKIP || entry.formColor == ColorTemplate.COLOR_NONE || entry.formColor == 0) return; int restoreCount = c.save(); Legend.LegendForm form = entry.form; if (form == Legend.LegendForm.DEFAULT) form = legend.getForm(); mLegendFormPaint.setColor(entry.formColor); final float formSize = Utils.convertDpToPixel( Float.isNaN(entry.formSize) ? legend.getFormSize() : entry.formSize); final float half = formSize / 2f; switch (form) { case NONE: // Do nothing break; case EMPTY: // Do not draw, but keep space for the form break; case DEFAULT: case CIRCLE: mLegendFormPaint.setStyle(Paint.Style.FILL); c.drawCircle(x + half, y, half, mLegendFormPaint); break; case SQUARE: mLegendFormPaint.setStyle(Paint.Style.FILL); c.drawRect(x, y - half, x + formSize, y + half, mLegendFormPaint); break; case LINE: { final float formLineWidth = Utils.convertDpToPixel( Float.isNaN(entry.formLineWidth) ? legend.getFormLineWidth() : entry.formLineWidth); final DashPathEffect formLineDashEffect = entry.formLineDashEffect == null ? legend.getFormLineDashEffect() : entry.formLineDashEffect; mLegendFormPaint.setStyle(Paint.Style.STROKE); mLegendFormPaint.setStrokeWidth(formLineWidth); mLegendFormPaint.setPathEffect(formLineDashEffect); mLineFormPath.reset(); mLineFormPath.moveTo(x, y); mLineFormPath.lineTo(x + formSize, y); c.drawPath(mLineFormPath, mLegendFormPaint); } break; } c.restoreToCount(restoreCount); }
Example 6
Source File: LegendRenderer.java From android-kline with Apache License 2.0 | 4 votes |
/** * Draws the Legend-form at the given position with the color at the given * index. * * @param c canvas to draw with * @param x position * @param y position * @param entry the entry to render * @param legend the legend context */ protected void drawForm( Canvas c, float x, float y, LegendEntry entry, Legend legend) { if (entry.formColor == ColorTemplate.COLOR_SKIP || entry.formColor == ColorTemplate.COLOR_NONE || entry.formColor == 0) return; int restoreCount = c.save(); Legend.LegendForm form = entry.form; if (form == Legend.LegendForm.DEFAULT) form = legend.getForm(); mLegendFormPaint.setColor(entry.formColor); final float formSize = Utils.convertDpToPixel( Float.isNaN(entry.formSize) ? legend.getFormSize() : entry.formSize); final float half = formSize / 2f; switch (form) { case NONE: // Do nothing break; case EMPTY: // Do not draw, but keep space for the form break; case DEFAULT: case CIRCLE: mLegendFormPaint.setStyle(Paint.Style.FILL); c.drawCircle(x + half, y, half, mLegendFormPaint); break; case SQUARE: mLegendFormPaint.setStyle(Paint.Style.FILL); c.drawRect(x, y - half, x + formSize, y + half, mLegendFormPaint); break; case LINE: { final float formLineWidth = Utils.convertDpToPixel( Float.isNaN(entry.formLineWidth) ? legend.getFormLineWidth() : entry.formLineWidth); final DashPathEffect formLineDashEffect = entry.formLineDashEffect == null ? legend.getFormLineDashEffect() : entry.formLineDashEffect; mLegendFormPaint.setStyle(Paint.Style.STROKE); mLegendFormPaint.setStrokeWidth(formLineWidth); mLegendFormPaint.setPathEffect(formLineDashEffect); mLineFormPath.reset(); mLineFormPath.moveTo(x, y); mLineFormPath.lineTo(x + formSize, y); c.drawPath(mLineFormPath, mLegendFormPaint); } break; } c.restoreToCount(restoreCount); }