Enumeration type for the various types of fills that can be used with Bar
charts.
| C# | Visual Basic | Visual C++ |
public enum FillType
Public Enumeration FillType
public enum class FillType
| Member | Description |
|---|---|
| None | No fill |
| Solid | A solid fill using SolidBrush |
| Brush | A custom fill using either LinearGradientBrush or
TextureBrush |
| GradientByX |
Fill with a single solid color based on the X value of the data. |
| GradientByY |
Fill with a single solid color based on the Z value of the data. |
| GradientByZ |
Fill with a single solid color based on the Z value of the data. |
| GradientByColorValue |
Fill with a single solid color based on the "ColorValue" property of the data. |
