public class LegendEntry
extends java.lang.Object
| Modifier and Type | Field and Description |
|---|---|
Legend.LegendForm |
form
The form to draw for this entry.
|
int |
formColor
The color for drawing the form
|
android.graphics.DashPathEffect |
formLineDashEffect
Line dash path effect used for shapes that consist of lines.
|
float |
formLineWidth
Line width used for shapes that consist of lines.
|
float |
formSize
Form size will be considered except for when .None is used
Set as NaN to use the legend's default
|
java.lang.String |
label
The legend entry text.
|
| Constructor and Description |
|---|
LegendEntry() |
LegendEntry(java.lang.String label,
Legend.LegendForm form,
float formSize,
float formLineWidth,
android.graphics.DashPathEffect formLineDashEffect,
int formColor) |
public java.lang.String label
public Legend.LegendForm form
public float formSize
public float formLineWidth
public android.graphics.DashPathEffect formLineDashEffect
public int formColor
public LegendEntry()
public LegendEntry(java.lang.String label,
Legend.LegendForm form,
float formSize,
float formLineWidth,
android.graphics.DashPathEffect formLineDashEffect,
int formColor)
label - The legend entry text. A `null` label will start a group.form - The form to draw for this entry.formSize - Set to NaN to use the legend's default.formLineWidth - Set to NaN to use the legend's default.formLineDashEffect - Set to nil to use the legend's default.formColor - The color for drawing the form.