Skip to main content
All docs
V24.1

Polar Chart Nested Component Structure

  • 4 minutes to read

The DxPolarChart component can include multiple sub-elements, such as a series, title, legend, or annotation. To display sub-elements on the chart plane, add the corresponding nested components to chart markup. You should declare nested components at appropriate nesting levels to render the chart component correctly.

This topic contains detailed information about available nesting levels and components permitted at each level.

First-Level Components

The Chart’s root level (<DxPolarChart>...</DxPolarChart>) can contain the following components:

The following code snippet adds first-level components to polar chart markup:

@using System.Drawing

<DxPolarChart Data=@DataSource>
    <DxPolarChartBarSeries Name="Day"
                           Color="Color.Sienna"
                           ArgumentField="@((DiscretePoint i) => i.Arg)"
                           ValueField="@((DiscretePoint i) => i.Day)" />
    <DxPolarChartBarSeries Name="Night"
                           Color="Color.MidnightBlue"
                           ArgumentField="@((DiscretePoint i) => i.Arg)"
                           ValueField="@((DiscretePoint i) => i.Night)" />
    <DxPolarChartArgumentAxis ArgumentType="ChartAxisDataType.DateTime" />
    <DxChartTitle Text="Average Temperature in London" />
    <DxChartLegend Orientation="Orientation.Vertical" HorizontalAlignment="HorizontalAlignment.Right" />
    <DxChartTooltip Enabled="true">
        <div class="discrete-chart-tooltip">
            @context.Point.Value °C
        </div>
    </DxChartTooltip>
    <DxChartAnimationSettings Enable="false" />
</DxPolarChart>

Second-Level Components

This section lists first-level components that can contain child components.

Individual Series

An individual series of any type can include:

The following code snippet creates a line series and adds second-level components to series markup:

<DxPolarChartLineSeries ArgumentField="@((DataPoint i) => i.X)"
                        ValueField="@((DataPoint i) => i.Y)">
    <DxChartSeriesLabel Visible="true" BackgroundColor="System.Drawing.Color.Violet">
        <DxChartSeriesLabelBorder Visible="true"
                                  DashStyle="ChartDashStyle.LongDash"
                                  Color="White" />
        <DxChartSeriesLabelConnector Color="System.Drawing.Color.DarkGreen" Visible="true" />
        <DxChartFont Color="white" />
    </DxChartSeriesLabel>
    <DxChartSeriesPoint Symbol="ChartPointSymbol.Cross">
    <DxChartSeriesLegendItem>
        <TextTemplate>@context</TextTemplate>
    </DxChartSeriesLegendItem>
</DxPolarChartLineSeries>

Axes

The argument and value axes can contain the following components:

The following code snippet adds second-level component to the markup of polar chart axes:

<DxPolarChartArgumentAxis Period="720"
                          Inverted="true"
                          StartAngle="90"
                          TickInterval="45">
    <DxChartConstantLine Value="15" />
    <DxPolarChartAxisLabel IndentFromAxis="15" />
    <DxChartAxisTick Color="Color.Purple" />
    <DxChartAxisMinorTick Visible="true" />
</DxPolarChartArgumentAxis>
<DxPolarChartValueAxis>
    <DxChartConstantLine Value="1.5" />
    <DxPolarChartAxisLabel IndentFromAxis="15" />
</DxPolarChartValueAxis>

Title

The DxChartTitle component can contain the DxChartSubTitle.

<DxChartTitle Text="Average Temperature in London">
    <DxChartSubTitle Text="Degree Celsius" />
</DxChartTitle>

Third-Level Components

This section lists second-level components that can contain child components.

Legend

The DxChartLegend component can contain DxChartTitle and DxChartSubTitle (inside the title’s markup) objects.

<DxChartLegend Orientation="Orientation.Vertical" HorizontalAlignment="HorizontalAlignment.Right">
    <DxChartTitle Text="Years">
        <DxChartSubTitle Text="(2020-2024)" />
    </DxChartTitle>
</DxChartLegend>

Legend Item

The DxChartSeriesLegendItem component can contain the TextTemplate that customizes a legend item’s text.

<DxPolarChartLineSeries ArgumentField="@((DataPoint i) => i.X)"
                        ValueField="@((DataPoint i) => i.Y)">
    <DxChartSeriesLegendItem>
        <TextTemplate>@context</TextTemplate>
    </DxChartSeriesLegendItem>
</DxPolarChartLineSeries>

Constant Line

The DxChartConstantLine component can contain the DxChartConstantLineLabel that configures the constant line’s label.

<DxChartConstantLine Value="@(04/01/2024)">
    <DxChartConstantLineLabel Position="RelativePosition.Outside" />
</DxChartConstantLine>

Series Point

The DxChartSeriesPoint component can contain a DxChartSeriesPointImage object that customizes the series point image.

<DxPolarChartLineSeries ArgumentField="@((DiscretePoint i) => i.Arg)"
                        ValueField="@((DiscretePoint i) => i.Day)">
    <DxChartSeriesPoint Color="Color.SlateBlue">
        <DxChartSeriesPointImage Width="50" Height="50" />
    </DxChartSeriesPoint>
</DxPolarChartLineSeries>

Series Label

The DxChartSeriesLabel component can contain the following child components:

DxChartSeriesLabelConnector
Customizes a line displayed between a point and its label.
DxChartFont
Contains the element’s font settings.
DxChartSeriesLabelBorder
Defines series label border settings.
<DxPolarChartLineSeries ArgumentField="@((DataPoint i) => i.X)"
                        ValueField="@((DataPoint i) => i.Y)">
    <DxChartSeriesLabel Visible="true" BackgroundColor="System.Drawing.Color.Violet">
        <DxChartSeriesLabelBorder Visible="true"
                                  DashStyle="ChartDashStyle.LongDash"
                                  Color="White" />
        <DxChartSeriesLabelConnector Color="System.Drawing.Color.DarkGreen" Visible="true" />
        <DxChartFont Color="white" />
    </DxChartSeriesLabel>
</DxPolarChartLineSeries>