Demos About Radzen
Search Results for

    Show / Hide Table of Contents

    Class RadzenSeriesMedianLine

    Displays the median of a chart series.

    Inheritance
    System.Object
    RadzenSeriesMedianLine
    Namespace: Radzen.Blazor
    Assembly: Radzen.Blazor.dll
    Syntax
    public class RadzenSeriesMedianLine : RadzenSeriesValueLine
    Examples
      <RadzenChart>
          <RadzenLineSeries Data=@revenue CategoryProperty="Quarter" ValueProperty="Revenue">
             <RadzenSeriesMedianLine />
          </RadzenLineSeries>
      </RadzenChart>
      @code {
          class DataItem
          {
              public string Quarter { get; set; }
              public double Revenue { get; set; }
          }
          DataItem[] revenue = new DataItem[]
          {
              new DataItem { Quarter = "Q1", Revenue = 234000 },
              new DataItem { Quarter = "Q2", Revenue = 284000 },
              new DataItem { Quarter = "Q3", Revenue = 274000 },
              new DataItem { Quarter = "Q4", Revenue = 294000 }
          };
      }

    Properties

    Name

    Declaration
    protected override string Name { get; }
    Property Value
    Type Description
    System.String

    Value

    Declaration
    public override double Value { get; set; }
    Property Value
    Type Description
    System.Double

    Introducing Radzen Blazor Studio

    Radzen Blazor Studio is a software development environment that empowers developers to design, build and deploy Blazor applications without the traditional hurdles. Write less code and get more done.

    Learn More

    Download Now
    Download Now
    In This Article
    Back to top Radzen Blazor Components, © 2018-2025 Radzen. Source Code licensed under MIT