Skip to main content

RangeValueBandPointColorizer Class

A value range colorizer that colors range bar series points based on their Y-axis values.

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public class RangeValueBandPointColorizer :
    BandPointColorizerBase,
    IRangePointColorizer

Remarks

Do the following to color range bar series points based on their Y-axis values:

  1. Assign a RangeValueBandPointColorizer object to the RangeBarSeries.PointColorizer property.
  2. Populate the colorizer’s ColorStops collection with ColorStop objects. Each ColorStop object defines a value range (a pair of Y-axis values) and a color. If a Y-axis value falls within the range, the point is painted with this color. Use the ValueLevel property to specify which of two point values (Low or High) should be evaluated.

Inheritance

Object
ChartElement
BandPointColorizerBase
RangeValueBandPointColorizer
See Also