maui-devexpress-dot-maui-dot-charts-dot-rangebarseries-14317bbb.md
Gets or sets a colorizer that specifies how to color-code bars. This is a bindable property.
Namespace : DevExpress.Maui.Charts
Assembly : DevExpress.Maui.Charts.dll
NuGet Package : DevExpress.Maui.Charts
public IRangePointColorizer PointColorizer { get; set; }
| Type | Description |
|---|---|
| IRangePointColorizer |
A colorizer object.
|
A point colorizer allows you to specify one or more conditions based on which a chart applies colors to series points (bars).
You can use a predefined colorizer or implement a custom colorizer for series points.
The ChartView ships with point and value range colorizers that use predefined algorithms to select point colors.
Point Colorizer
Assign a ColorEachPointColorizer object to the PointColorizer property of the series to access colors from the default or custom palette.
Learn more…
Value Range Colorizer
You can color series points based on their Y-axis values.
Learn more…
Point Colorizer
The ChartView can color points of a series according to a custom algorithm based on point arguments/values and values of the chart’s bound data source.
Create a class that implements the IRangeCustomPointColorizer or IIndexBasedCustomPointColorizer interface and assign this class instance to the PointColorizer property of the series.
Learn more…
Value Range Colorizer
A predefined value range colorizer colors points according to their Y-axis values. If you require a series point color to indicate a value of the specified data source field, implement a custom value range colorizer. To do this:
Refer to the following topic for more information: Charts for .NET MAUI. Series Point Colorizers.
See Also