MindFusion.Charting for Java Programmer's Guide
PerSeriesStyle Constructor
See Also
 






  Gauges

Initializes a new instance of the PerSeriesStyle class with the specified fills, strokes, stroke thicknesses and stroke DashStyle-s.

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

 Syntax

Java  Copy Code

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

 Parameters

fills

A list of brushes, each Brush is used to fill all elements of a Series.

strokes

A list of brushes, each Brush is used to stroke all elements of a Series.

strokeThicknesses

A list of stroke thicknesses, each thickness is applied to all elements of a Series.

strokeDashStyles

A list of DashStyle instances, each style applied to all elements of a Series.

 See Also