Skip to main content
A newer version of this page is available. .

RegressionLineIndicator.ValueLevel Property

Namespace: DevExpress.XamarinForms.Charts

Assembly: DevExpress.XamarinForms.Charts.dll

NuGet Package: DevExpress.XamarinForms.Charts

Declaration

public ValueLevel ValueLevel { get; set; }

Property Value

Type
ValueLevel

Available values:

Name
Auto
Value
Weight
High
Low
Open
Close

Example

This example demonstrates how to build a regression line based on High values of a stock series.

  1. Add the RegressionLineIndicator object to the chart’s collection of series (ChartView.Series).
  2. Set the indicator’s Data property to a CalculatedSeriesDataAdapter class instance. Use this object’s Series property to specify a series for which the indicator should be calculated.
  3. Set the ValueLevel property to High to specify a point value used to build a regression line.
<dxc:ChartView x:Name="chart">
    <dxc:ChartView.Series>
        <dxc:StockSeries>
            <dxc:StockSeries.Data>
                <dxc:SeriesDataAdapter DataSource="{Binding StockPrices}" ArgumentDataMember="Date">
                    <dxc:ValueDataMember Type="High" Member="High" />
                    <dxc:ValueDataMember Type="Low" Member="Low" />
                    <dxc:ValueDataMember Type="Open" Member="Open" />
                    <dxc:ValueDataMember Type="Close" Member="Close" />
                </dxc:SeriesDataAdapter>
            </dxc:StockSeries.Data>
        </dxc:StockSeries>

        <dxc:RegressionLineIndicator ValueLevel="High"
                                     VisibleInLegend="True"
                                     DisplayName="Regression Line">
            <dxc:RegressionLineIndicator.Data>
                <dxc:CalculatedSeriesDataAdapter Series="{Binding Series[0], Source={x:Reference chart}}"/>
            </dxc:RegressionLineIndicator.Data>
        </dxc:RegressionLineIndicator>
    </dxc:ChartView.Series>
</dxc:ChartView>
See Also