public interface SeriesStyle
Modifier and Type | Method and Description |
---|---|
com.mindfusion.drawing.Brush |
fill(int seriesIndex,
int dataIndex)
Returns a Brush that should be used to fill specified element of specified series.
|
com.mindfusion.drawing.Brush |
stroke(int seriesIndex,
int dataIndex)
Returns a Brush that should be used to stroke specified element of specified series.
|
com.mindfusion.drawing.DashStyle |
strokeDashStyle(int seriesIndex,
int dataIndex)
Returns the dash style of the stroke used to draw specified element of specified series.
|
java.lang.Double |
strokeThickness(int seriesIndex,
int dataIndex)
Returns the thickness of the stroke used to draw specified element of specified series.
|
com.mindfusion.drawing.Brush fill(int seriesIndex, int dataIndex)
seriesIndex
- An integer index of a Series.dataIndex
- An integer index of a data item in specified series.com.mindfusion.drawing.Brush stroke(int seriesIndex, int dataIndex)
seriesIndex
- An integer index of a Series.dataIndex
- An integer index of a data item in specified series.java.lang.Double strokeThickness(int seriesIndex, int dataIndex)
seriesIndex
- An integer index of a Series.dataIndex
- An integer index of a data item in specified series.com.mindfusion.drawing.DashStyle strokeDashStyle(int seriesIndex, int dataIndex)
seriesIndex
- An integer index of a Series.dataIndex
- An integer index of a data item in specified series.