Definition
Namespace:Telerik.WinControls.UI
Assembly:Telerik.WinControls.UI.dll
Syntax:
C#
public class PaintSparkFillEventArgs : PaintSparkPartEventArgs
Inheritance: objectEventArgsCancelEventArgsPaintSparkPartEventArgsPaintSparkFillEventArgs
Inherited Members
Constructors
Initializes a new instance of the PaintSparkFillEventArgs class.
C#
public PaintSparkFillEventArgs(SolidBrush fillBrush, Graphics graphics, GraphicsPath path, object context)
The SolidBrush object used to paint the fill color.
graphicsGraphicsThe Graphics object used to do the actual painting.
pathGraphicsPathThe GraphicsPath object forming a region of points which will be filled with color.
contextobjectThe context in which the painting will occur. The context can be the actual series, the annotations or the data points.
Properties
Gets the brush object. It can be modified and e.g. the back color changed.
C#
public SolidBrush FillBrush { get; }
The brush object.