Search
PerElementSeriesStyle Constructor
See Also
 






Initializes a new instance of the PerElementSeriesStyle class with the specified fills, strokes, stroke thicknesses and stroke dash styles.

Namespace: com.mindfusion.charting
File: com.mindfusion.charting

 Syntax

Java  Copy Code

public PerElementSeriesStyle (
    List<List<Brush>> fills,
    List<List<Brush>> strokes,
    List<List<Double>> strokeThicknesses,
    List<List<DashStyle>> strokeDashStyles
)

 Parameters

fills

A list of Brush-lists, each list used to paint a different Series, and each Brush used to fill individual elements of the Series.

strokes

A list of Brush-lists, each list used to stroke a different Series, and each Brush in the list used to stroke individual elements of a Series.

strokeThicknesses

A list of lists with double values, each list used to stroke a different Series, and each double value specifying the thickness of the stroke of an element in the Series.

strokeDashStyles

A list of DashStyle lists, each list used to stroke a different Series, and each DashStyle value specifying the style of an individual element in the Series.

 Remarks

If the Brush-es, strokes, stroke thicknesses or the DashStyle-s are less than the data items in the Series, the library cycles through them.

 See Also